1 package org.astrogrid.security;
2
3 /***
4 * An exception thrown when an authentication mechanism,
5 * e.g. AstroGrid community service fails to run an
6 * identity check.
7 *
8 * @author Guy Rixon
9 */
10 public class AuthenticatorUnavailableException extends SecurityException {
11
12 public AuthenticatorUnavailableException (String message) {
13 super(message);
14 }
15
16 public AuthenticatorUnavailableException (String message, Throwable t) {
17 super(message, t);
18 }
19
20 }