Package org.ametys.plugins.repository
Class AmetysRepositoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.ametys.plugins.repository.AmetysRepositoryException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AmetysObjectExistsException,RepositoryIntegrityViolationException,UnknownAmetysObjectException,UnknownDataException,UnknownMetadataException,UnknownZoneException
Common exception for all Repository related problems.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionAmetysRepositoryException(String message) Constructs a new exception with the specified detail message.AmetysRepositoryException(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.Constructs a new exception with the specified 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
-
AmetysRepositoryException
Constructs a new exception with the specified detail message.- Parameters:
message- the detail message.
-
AmetysRepositoryException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause.
-
AmetysRepositoryException
Constructs a new exception with the specified cause.- Parameters:
cause- the specified cause.
-