Class StorageException

  • All Implemented Interfaces:
    java.io.Serializable

    public class StorageException
    extends java.lang.RuntimeException
    Base exception class for problems encountered in the domain for storage.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      StorageException​(java.lang.String message)
      Constructs a new storage exception with the specified detail message.
      StorageException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new storage exception with the specified detail message and cause.
      StorageException​(java.lang.Throwable cause)
      Constructs a new storage 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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • StorageException

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

        public StorageException​(java.lang.String message,
                                java.lang.Throwable cause)
        Constructs a new storage exception with the specified detail message and cause.
        Parameters:
        message - the detail that may be retrieved later by Throwable.getMessage().
        cause - saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      • StorageException

        public StorageException​(java.lang.String message)
        Constructs a new storage exception with the specified detail message.
        Parameters:
        message - the detail that may be retrieved later by Throwable.getMessage().