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 UnknownCredentialsManagerFactoryClassException extends
14: EngineException {
15: private static final long serialVersionUID = 2327443941218492096L;
16:
17: private String mFactoryClassName = null;
18:
19: public UnknownCredentialsManagerFactoryClassException(
20: String className, Throwable e) {
21: super ("The credentials manager factory class '" + className
22: + "' is not known to the system.", e);
23: mFactoryClassName = className;
24: }
25:
26: public String getManagerClassName() {
27: return mFactoryClassName;
28: }
29: }
|