Package org.apache.fulcrum.security.util
Class DataBackendException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.fulcrum.security.util.FulcrumSecurityException
-
- org.apache.fulcrum.security.util.DataBackendException
-
- All Implemented Interfaces:
Serializable
public class DataBackendException extends FulcrumSecurityException
Thrown to indicate that there was an error accessing the data backend of the SecurityService.- Version:
- $Id$
- Author:
- Rafal Krzewski
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataBackendException(String msg)
Construct an DataBackendException with specified detail message.DataBackendException(String msg, Throwable nested)
Construct an DataBackendException with specified detail message and nestedThrowable
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DataBackendException
public DataBackendException(String msg)
Construct an DataBackendException with specified detail message.- Parameters:
msg
- The detail message.
-
DataBackendException
public DataBackendException(String msg, Throwable nested)
Construct an DataBackendException with specified detail message and nestedThrowable
.- Parameters:
msg
- The detail message.nested
- the exception or error that caused this exception to be thrown.
-
-