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
9 package org.opendaylight.aaa.idpmapping;
12 * Exception thrown when the type of a value is incorrect for a given context.
14 * @author John Dennis <jdennis@redhat.com>
17 public class InvalidTypeException extends RuntimeException {
19 private static final long serialVersionUID = 4437011247503994368L;
21 public InvalidTypeException() {
24 public InvalidTypeException(String message) {
28 public InvalidTypeException(Throwable cause) {
32 public InvalidTypeException(String message, Throwable cause) {
33 super(message, cause);