01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com> and
03: * Steven Grimm <koreth[remove] at midwinter dot com>
04: * Distributed under the terms of either:
05: * - the common development and distribution license (CDDL), v1.0; or
06: * - the GNU Lesser General Public License, v2.1 or later
07: * $Id: UnknownCredentialsClassException.java 3308 2006-06-15 18:54:14Z gbevin $
08: */
09: package com.uwyn.rife.authentication.elements.exceptions;
10:
11: import com.uwyn.rife.engine.exceptions.EngineException;
12:
13: public class UnknownSessionValidatorFactoryClassException extends
14: EngineException {
15: private String mFactoryClassName = null;
16:
17: public UnknownSessionValidatorFactoryClassException(
18: String className, Throwable e) {
19: super ("The session validator factory class '" + className
20: + "' is not known to the system.", e);
21: mFactoryClassName = className;
22: }
23:
24: public String getValidatorClassName() {
25: return mFactoryClassName;
26: }
27: }
|