Class AlreadyExistsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.springframework.security.acls.model.AclDataAccessException
-
- org.springframework.security.acls.model.AlreadyExistsException
-
- All Implemented Interfaces:
java.io.Serializable
public class AlreadyExistsException extends AclDataAccessException
Thrown if anAcl
entry already exists for the object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AlreadyExistsException(java.lang.String msg)
Constructs anAlreadyExistsException
with the specified message.AlreadyExistsException(java.lang.String msg, java.lang.Throwable cause)
Constructs anAlreadyExistsException
with the specified message and root cause.
-
-
-
Constructor Detail
-
AlreadyExistsException
public AlreadyExistsException(java.lang.String msg)
Constructs anAlreadyExistsException
with the specified message.- Parameters:
msg
- the detail message
-
AlreadyExistsException
public AlreadyExistsException(java.lang.String msg, java.lang.Throwable cause)
Constructs anAlreadyExistsException
with the specified message and root cause.- Parameters:
msg
- the detail messagecause
- root cause
-
-