Class SerializeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.inductiveautomation.ignition.gateway.storeforward.serialization.exceptions.SerializeException
- All Implemented Interfaces:
Serializable
A custom exception that is thrown when serialization fails.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSerializeException(String message) Constructs a new SerializeException with the specified detail message.SerializeException(String message, Throwable cause) Constructs a new SerializeException with the specified detail message and cause.SerializeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new SerializeException with the specified detail message, cause, enable suppression flag, and writable stack trace flag.SerializeException(Throwable cause) Constructs a new SerializeException 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
-
SerializeException
Constructs a new SerializeException with the specified detail message.- Parameters:
message- The detail message for this exception.
-
SerializeException
Constructs a new SerializeException with the specified detail message and cause.- Parameters:
message- The detail message for this exception.cause- The underlying cause of this exception.
-
SerializeException
Constructs a new SerializeException with the specified cause and no detail message.- Parameters:
cause- The underlying cause of this exception.
-
SerializeException
public SerializeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new SerializeException 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.
-