Class DocumentServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
se.conciliate.extensions.documentservice.exception.DocumentServiceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
UserCausedDocumentServiceException
Deprecated.
Exception used to signal an error in a DocumentService.
- Author:
- Per-Erik
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Creates a new instance ofDocumentServiceException
without detail message.Deprecated.Constructs an instance ofDocumentServiceException
with the specified detail message.DocumentServiceException
(String msg, Throwable cause) Deprecated.Creates a new DocumentServiceException with the cause 'cause' and message 'msg'.Deprecated.Creates a new DocumentServiceException with the cause '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
-
DocumentServiceException
Deprecated.Creates a new DocumentServiceException with the cause 'cause'.- Parameters:
cause
- the base exception that caused this DocumentServiceException.
-
DocumentServiceException
Deprecated.Creates a new DocumentServiceException with the cause 'cause' and message 'msg'.- Parameters:
msg
- a message explaining what went wrong.cause
- the base exception that caused this DocumentServiceException.
-
DocumentServiceException
public DocumentServiceException()Deprecated.Creates a new instance ofDocumentServiceException
without detail message. -
DocumentServiceException
Deprecated.Constructs an instance ofDocumentServiceException
with the specified detail message.- Parameters:
msg
- a message explaining what went wrong.
-