Class InternalServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.aristaflow.adept2.base.service.ADEPT2ServiceException
de.aristaflow.adept2.base.service.InternalServiceException
- All Implemented Interfaces:
Serializable
Thrown, if an internal error happened, e.g. if connection to the
data base fails, or locking of an entity fails over a defined time
limit.
- Author:
- Kevin Goeser
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCreate a new exception without any data.InternalServiceException(String message) Create a new exception with a message.InternalServiceException(String message, Throwable cause) Create a new exception with a message and a cause.protectedCreate a new exception with the designated 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
-
InternalServiceException
protected InternalServiceException()Create a new exception without any data. This is useful for subclasses. -
InternalServiceException
Create a new exception with the designated cause. This is useful for subclasses.- Parameters:
cause-
-
InternalServiceException
Create a new exception with a message and a cause.- Parameters:
message-cause-
-
InternalServiceException
Create a new exception with a message.- Parameters:
message-
-