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