Class DataStorageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.inductiveautomation.ignition.gateway.storeforward.exceptions.DataStorageException
- All Implemented Interfaces:
Serializable
Exception that is thrown when a persistent data storage operation fails.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDataStorageException
(String message) Constructs a new exception with the specified detail message.DataStorageException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.DataStorageException
(Throwable cause) Constructs a new exception with the specified 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
-
DataStorageException
Constructs a new exception with the specified detail message.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)
-
DataStorageException
Constructs a new exception with the specified cause.- Parameters:
cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
DataStorageException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method)cause
- The cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-