Class StorageException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hyperledger.besu.plugin.services.exception.StorageException
All Implemented Interfaces:
Serializable

public class StorageException extends RuntimeException
Base exception class for problems encountered in the domain for storage.
See Also:
  • Constructor Details

    • StorageException

      public StorageException(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(String message, 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(String message)
      Constructs a new storage exception with the specified detail message.
      Parameters:
      message - the detail that may be retrieved later by Throwable.getMessage().