01: package org.esupportail.cas.server.util;
02:
03: /**
04: * This class implements an exception that should be used by handlers
05: * to tell the main class that a handler was not configured correctly.
06: *
07: * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
08: */
09: public final class MisconfiguredHandlerException extends Exception {
10:
11: /**
12: * Constructor.
13: *
14: * @param s the message of the exception
15: */
16: public MisconfiguredHandlerException(final String s) {
17: super(s);
18: }
19: }
|