Package com.dua3.utility.io
Class ObjectNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.dua3.utility.io.ObjectNotFoundException
- All Implemented Interfaces:
Serializable
Signals that a requested object could not be found.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionObjectNotFoundException(String message) Constructs a newObjectNotFoundExceptionwith the specified detail message.ObjectNotFoundException(String message, Throwable cause) Constructs a new ObjectNotFoundException with the specified detail message and cause.ObjectNotFoundException(Throwable cause) Constructs a new ObjectNotFoundException 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
-
Constructor Details
-
ObjectNotFoundException
Constructs a newObjectNotFoundExceptionwith the specified detail message.- Parameters:
message- the detail message providing information about the exception
-
ObjectNotFoundException
Constructs a new ObjectNotFoundException with the specified detail message and cause.- Parameters:
message- the detail message explaining why the exception was throwncause- the underlying cause of the exception, or null if not available
-
ObjectNotFoundException
Constructs a new ObjectNotFoundException with the specified cause.- Parameters:
cause- the cause of this exception, which is saved for later retrieval by theThrowable.getCause()method
-