2 * Copyright (c) 2014 Hewlett-Packard Development Company, L.P. and others. 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.api;
12 * A catch-all authentication exception.
17 public class AuthenticationException extends RuntimeException {
18 private static final long serialVersionUID = -187422301135305719L;
20 public AuthenticationException(String msg) {
24 public AuthenticationException(String msg, Throwable cause) {
28 public AuthenticationException(Throwable cause) {