2 * Copyright (c) 2014 Red Hat, Inc. All rights reserved.
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
8 package org.opendaylight.aaa.idpmapping;
11 * Exception thrown when a statement references an undefined value.
13 * @author John Dennis <jdennis@redhat.com>
16 public class UndefinedValueException extends RuntimeException {
18 private static final long serialVersionUID = -1607453931670834435L;
20 public UndefinedValueException() {
23 public UndefinedValueException(String message) {
27 public UndefinedValueException(Throwable cause) {
31 public UndefinedValueException(String message, Throwable cause) {
32 super(message, cause);