Package i5.las2peer.api.persistency
Class EnvelopeAccessDeniedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
i5.las2peer.api.persistency.EnvelopeException
i5.las2peer.api.persistency.EnvelopeAccessDeniedException
- All Implemented Interfaces:
Serializable
This exception is thrown if an artifact cannot be opened.
- See Also:
-
Constructor Summary
ConstructorDescriptionEnvelopeAccessDeniedException
(String message) This constructor sets only the message for this exception and leaves the cause tonull
.EnvelopeAccessDeniedException
(String message, Throwable cause) This constructor allows to set message and cause for this exception.This constructor leaves the messagenull
and sets only the cause for this exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EnvelopeAccessDeniedException
This constructor sets only the message for this exception and leaves the cause tonull
.- Parameters:
message
- A message that describes the error.
-
EnvelopeAccessDeniedException
This constructor leaves the messagenull
and sets only the cause for this exception. This is usually used to wrap other exception types and unify exception handling for the developer.- Parameters:
cause
- An other exception that caused this one.
-
EnvelopeAccessDeniedException
This constructor allows to set message and cause for this exception.- Parameters:
message
- A message that describes the error.cause
- An other exception that caused this one.
-