package org.dcache.gplazma; public class AuthenticationException extends Exception { /** * Auto-generated serialVersionUID */ private static final long serialVersionUID = -2546335625168412311L; public AuthenticationException() { super(); } public AuthenticationException(String message) { super(message); } public AuthenticationException(Throwable cause) { super(cause); } public AuthenticationException(String message, Throwable cause) { super(message, cause); } }