d462152720b67716259fef8f9da5a9c2d3dd99bd
[moon.git] /
1 /*
2  * Copyright (c) 2014 Hewlett-Packard Development Company, L.P. and others.  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.api;
10
11 /**
12  * A catch-all authentication exception.
13  *
14  * @author liemmn
15  *
16  */
17 public class AuthenticationException extends RuntimeException {
18     private static final long serialVersionUID = -187422301135305719L;
19
20     public AuthenticationException(String msg) {
21         super(msg);
22     }
23
24     public AuthenticationException(String msg, Throwable cause) {
25         super(msg, cause);
26     }
27
28     public AuthenticationException(Throwable cause) {
29         super(cause);
30     }
31 }