Class AclDataAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.security.acls.model.AclDataAccessException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AlreadyExistsException
,ChildrenExistException
,NotFoundException
,UnloadedSidException
Abstract base class for Acl data operations.
- Since:
- 3.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs anAclDataAccessException
with the specified message and no root cause.AclDataAccessException
(String msg, Throwable cause) Constructs anAclDataAccessException
with the specified message and root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AclDataAccessException
Constructs anAclDataAccessException
with the specified message and root cause.- Parameters:
msg
- the detail messagecause
- the root cause
-
AclDataAccessException
Constructs anAclDataAccessException
with the specified message and no root cause.- Parameters:
msg
- the detail message
-