Class FileNotRenamedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.github.astrapi69.file.exception.FileNotRenamedException
-
- All Implemented Interfaces:
java.io.Serializable
public class FileNotRenamedException extends java.lang.Exception
Exception if the file could not be renamed.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FileNotRenamedException()
Default constructor.FileNotRenamedException(java.lang.String message)
Constructs a new FileNotRenamedException with the specified detail message.FileNotRenamedException(java.lang.String message, java.lang.Throwable cause)
Constructs a new FileNotRenamedException with the specified detail message and the Throwable.FileNotRenamedException(java.lang.Throwable cause)
Constructs a FileNotRenamedException with the Throwable.
-
-
-
Constructor Detail
-
FileNotRenamedException
public FileNotRenamedException()
Default constructor.
-
FileNotRenamedException
public FileNotRenamedException(java.lang.String message)
Constructs a new FileNotRenamedException with the specified detail message.- Parameters:
message
- The message.
-
FileNotRenamedException
public FileNotRenamedException(java.lang.String message, java.lang.Throwable cause)
Constructs a new FileNotRenamedException with the specified detail message and the Throwable.- Parameters:
message
- The message.cause
- The Throwable.
-
FileNotRenamedException
public FileNotRenamedException(java.lang.Throwable cause)
Constructs a FileNotRenamedException with the Throwable.- Parameters:
cause
- The Throwable.
-
-