001 package org.esupportail.cas.server.util;
002
003 /**
004 * This class implements an exception that should be used by handlers
005 * to tell the main class that a handler was not configured correctly.
006 *
007 * @author Pascal Aubry <pascal.aubry at univ-rennes1.fr>
008 */
009 public final class MisconfiguredHandlerException extends Exception {
010
011 /**
012 * Constructor.
013 *
014 * @param s the message of the exception
015 */
016 public MisconfiguredHandlerException(final String s) {
017 super(s);
018 }
019 }
020