7200da3d950cd10f51ac23b575ade3d1c0e86fdc
[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 package org.opendaylight.aaa.idpmapping;
9
10 /**
11  * Exception thrown when a statement references an undefined value.
12  *
13  * @author John Dennis <jdennis@redhat.com>
14  */
15
16 public class UndefinedValueException extends RuntimeException {
17
18     private static final long serialVersionUID = -1607453931670834435L;
19
20     public UndefinedValueException() {
21     }
22
23     public UndefinedValueException(String message) {
24         super(message);
25     }
26
27     public UndefinedValueException(Throwable cause) {
28         super(cause);
29     }
30
31     public UndefinedValueException(String message, Throwable cause) {
32         super(message, cause);
33     }
34 }