Class ObjectNotFoundException

All Implemented Interfaces:
Serializable

public class ObjectNotFoundException extends IOException
Signals that a requested object could not be found.
See Also:
  • Constructor Details

    • ObjectNotFoundException

      public ObjectNotFoundException(String message)
      Constructs a new ObjectNotFoundException with the specified detail message.
      Parameters:
      message - the detail message providing information about the exception
    • ObjectNotFoundException

      public ObjectNotFoundException(String message, Throwable cause)
      Constructs a new ObjectNotFoundException with the specified detail message and cause.
      Parameters:
      message - the detail message explaining why the exception was thrown
      cause - the underlying cause of the exception, or null if not available
    • ObjectNotFoundException

      public ObjectNotFoundException(Throwable cause)
      Constructs a new ObjectNotFoundException with the specified cause.
      Parameters:
      cause - the cause of this exception, which is saved for later retrieval by the Throwable.getCause() method