Class StorageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.centraldogma.server.storage.StorageException
- All Implemented Interfaces:
Serializable
A
RuntimeException
that is raised when a potentially irrecoverable storage access failure has
occurred.- See Also:
-
Constructor Summary
ModifierConstructorDescriptionCreates a new instance.StorageException
(String message) Creates a new instance with the specifiedmessage
.StorageException
(String message, Throwable cause) Creates a new instance with the specifiedmessage
andcause
.protected
StorageException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance with the specifiedmessage
,cause
, suppression enabled or disabled, and writable stack trace enabled or disabled.StorageException
(Throwable cause) Creates a new instance with the specifiedcause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StorageException
public StorageException()Creates a new instance. -
StorageException
Creates a new instance with the specifiedmessage
. -
StorageException
Creates a new instance with the specifiedcause
. -
StorageException
Creates a new instance with the specifiedmessage
andcause
. -
StorageException
protected StorageException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance with the specifiedmessage
,cause
, suppression enabled or disabled, and writable stack trace enabled or disabled.
-