monasca-api/src/main/java/com/hp/csbu/cc/middleware/AuthException.java

19 lines
304 B
Java

package com.hp.csbu.cc.middleware;
/**
* An exception to indicate any authentication error.
*
* @author liemmn
*
*/
public class AuthException extends RuntimeException {
public AuthException(String msg) {
super(msg);
}
public AuthException(String msg, Exception e) {
super(msg, e);
}
}