Package loci.common.services
Class ServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
loci.common.services.ServiceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
S3ClientServiceException
Exception thrown when there is an error within a given service. That could
not be handled.
- Author:
- Chris Allan (callan at blackcat dot ca)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionServiceException(String message) Default constructor.ServiceException(String message, Throwable cause) Default constructor.ServiceException(Throwable cause) Default constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServiceException
Default constructor.- Parameters:
message- Error message.
-
ServiceException
Default constructor.- Parameters:
message- Error message.cause- Upstream exception.
-
ServiceException
Default constructor.- Parameters:
cause- Upstream exception.
-