java.lang.Object
java.lang.Throwable
java.lang.Exception
com.inductiveautomation.ignition.gateway.storeforward.serialization.exceptions.SerializeException
All Implemented Interfaces:
Serializable

public class SerializeException extends Exception
A custom exception that is thrown when serialization fails.
See Also:
  • Constructor Details

    • SerializeException

      public SerializeException(String message)
      Constructs a new SerializeException with the specified detail message.
      Parameters:
      message - The detail message for this exception.
    • SerializeException

      public SerializeException(String message, Throwable cause)
      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

      public SerializeException(Throwable cause)
      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.