1 package com.atlassian.seraph.auth;2 3 /**4 * An exception for all Authenticator related error conditions5 *6 * @see Authenticator7 */8 public class AuthenticatorException extends Exception 9 {10 public AuthenticatorException()11 {12 }13 14 public AuthenticatorException(String s)15 {16 super(s);17 }18 }19