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

public class DataStorageException extends Exception
Exception that is thrown when a persistent data storage operation fails.
See Also:
  • Constructor Details

    • DataStorageException

      public DataStorageException(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)
    • DataStorageException

      public DataStorageException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • DataStorageException

      public DataStorageException(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)