Class FileDoesNotExistException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.github.astrapi69.file.exception.FileDoesNotExistException
- All Implemented Interfaces:
Serializable
This Exception is thrown when the file is not found or does not exist.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.FileDoesNotExistException
(String message) Constructs a new FileDoesNotExistException with the specified detail message.FileDoesNotExistException
(String message, Throwable cause) Constructs a new FileDoesNotExistException with the specified detail message and the Throwable.Constructs a FileDoesNotExistException with the Throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FileDoesNotExistException
public FileDoesNotExistException()Default constructor. -
FileDoesNotExistException
Constructs a new FileDoesNotExistException with the specified detail message.- Parameters:
message
- The message.
-
FileDoesNotExistException
Constructs a new FileDoesNotExistException with the specified detail message and the Throwable.- Parameters:
message
- The message.cause
- The Throwable.
-
FileDoesNotExistException
Constructs a FileDoesNotExistException with the Throwable.- Parameters:
cause
- The Throwable.
-