Class FileNotRenamedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.github.astrapi69.file.exception.FileNotRenamedException
- All Implemented Interfaces:
Serializable
Exception if the file could not be renamed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.FileNotRenamedException
(String message) Constructs a new FileNotRenamedException with the specified detail message.FileNotRenamedException
(String message, Throwable cause) Constructs a new FileNotRenamedException with the specified detail message and the Throwable.FileNotRenamedException
(Throwable cause) Constructs a FileNotRenamedException 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
-
FileNotRenamedException
public FileNotRenamedException()Default constructor. -
FileNotRenamedException
Constructs a new FileNotRenamedException with the specified detail message.- Parameters:
message
- The message.
-
FileNotRenamedException
Constructs a new FileNotRenamedException with the specified detail message and the Throwable.- Parameters:
message
- The message.cause
- The Throwable.
-
FileNotRenamedException
Constructs a FileNotRenamedException with the Throwable.- Parameters:
cause
- The Throwable.
-