Class CrowdDataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
com.atlassian.crowd.integration.springsecurity.user.CrowdDataAccessException
- All Implemented Interfaces:
Serializable
public class CrowdDataAccessException
extends org.springframework.dao.DataAccessException
Represents a Crowd-Server specific error, eg.
connection problems, application authentication problems, etc.
- Author:
- Shihab Hamid
- See Also:
-
Constructor Summary
ConstructorDescriptionUse CrowdDataAccessException to wrap underlying error.Constructor for DataAccessException.CrowdDataAccessException
(String msg, Throwable cause) Constructor for DataAccessException. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CrowdDataAccessException
Constructor for DataAccessException.- Parameters:
msg
- the detail message
-
CrowdDataAccessException
Constructor for DataAccessException.- Parameters:
msg
- the detail messagecause
- the root cause (usually from using a underlying data access API such as JDBC)
-
CrowdDataAccessException
Use CrowdDataAccessException to wrap underlying error.- Parameters:
e
- underlying exception.
-