1e42f4f23a4c7a2e9efed6576b19ec26d4786308
[moon.git] /
1 /*
2  * Copyright (c) 2014 Red Hat, Inc.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.aaa.idpmapping;
10
11 /**
12  * Exception thrown when a mapping rule is improperly defined.
13  *
14  * @author John Dennis <jdennis@redhat.com>
15  */
16
17 public class InvalidRuleException extends RuntimeException {
18
19     private static final long serialVersionUID = 1948891573270429630L;
20
21     public InvalidRuleException() {
22     }
23
24     public InvalidRuleException(String message) {
25         super(message);
26     }
27
28     public InvalidRuleException(Throwable cause) {
29         super(cause);
30     }
31
32     public InvalidRuleException(String message, Throwable cause) {
33         super(message, cause);
34     }
35 }