Class DeserializeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.inductiveautomation.ignition.gateway.storeforward.serialization.exceptions.DeserializeException
- All Implemented Interfaces:
Serializable
A custom exception that is thrown when deserialization fails.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeserializeException
(String message) Constructs a new DeserializeException with the specified detail message.DeserializeException
(String message, Throwable cause) Constructs a new DeserializeException with the specified detail message and cause.DeserializeException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new DeserializeException with the specified detail message, cause, enable suppression flag, and writable stack trace flag.DeserializeException
(Throwable cause) Constructs a new DeserializeException with the specified cause and no detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DeserializeException
Constructs a new DeserializeException with the specified detail message.- Parameters:
message
- The detail message for this exception.
-
DeserializeException
Constructs a new DeserializeException with the specified detail message and cause.- Parameters:
message
- The detail message for this exception.cause
- The underlying cause of this exception.
-
DeserializeException
Constructs a new DeserializeException with the specified cause and no detail message.- Parameters:
cause
- The underlying cause of this exception.
-
DeserializeException
public DeserializeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new DeserializeException with the specified detail message, cause, enable suppression flag, and writable stack trace flag.- Parameters:
message
- The detail message for this exception.cause
- The underlying cause of this exception.enableSuppression
- Whether suppression is enabled or disabled for this exception.writableStackTrace
- Whether the stack trace should be writable for this exception.
-