1 package no.feide.moria.servlet.soap;
2
3
4 /***
5 * Signals to the remote service that Moria was unable to reach the third-party
6 * server responsible for user authentication.
7 * @author Cato Olsen
8 */
9 public class AuthenticationUnavailableException
10 extends ServerException {
11
12
13 /***
14 * Default constructor.
15 * @param msg The exception message.
16 */
17 public AuthenticationUnavailableException(final String msg) {
18
19 super(msg);
20
21 }
22
23
24 /***
25 * This exception's SOAP Faultstring.
26 * @return The Faultstring, in this case
27 * <code>"AUTHENTICATION UNAVAILABLE"</code>.
28 */
29 public String getFaultstring() {
30
31 return new String("AUTHENTICATION UNAVAILABLE");
32
33 }
34
35 }