Class DirectoryAlreadyExistsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- io.github.astrapi69.file.exception.DirectoryAlreadyExistsException
-
- All Implemented Interfaces:
java.io.Serializable
public class DirectoryAlreadyExistsException extends java.lang.Exception
Exception that is thrown if an attempt is made to create a directory that already exists- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DirectoryAlreadyExistsException()
Constructs a newDirectoryAlreadyExistsException
objectDirectoryAlreadyExistsException(java.lang.String message)
Constructs a new DirectoryAlreadyExistsException with the specified detail message.DirectoryAlreadyExistsException(java.lang.String message, java.lang.Throwable cause)
Constructs a new DirectoryAlreadyExistsException with the specified detail message and the Throwable.DirectoryAlreadyExistsException(java.lang.Throwable cause)
Constructs a DirectoryAlreadyExistsException with the Throwable.
-
-
-
Constructor Detail
-
DirectoryAlreadyExistsException
public DirectoryAlreadyExistsException()
Constructs a newDirectoryAlreadyExistsException
object
-
DirectoryAlreadyExistsException
public DirectoryAlreadyExistsException(java.lang.String message)
Constructs a new DirectoryAlreadyExistsException with the specified detail message.- Parameters:
message
- The error message.
-
DirectoryAlreadyExistsException
public DirectoryAlreadyExistsException(java.lang.String message, java.lang.Throwable cause)
Constructs a new DirectoryAlreadyExistsException with the specified detail message and the Throwable.- Parameters:
message
- The error message.cause
- The Throwable.
-
DirectoryAlreadyExistsException
public DirectoryAlreadyExistsException(java.lang.Throwable cause)
Constructs a DirectoryAlreadyExistsException with the Throwable.- Parameters:
cause
- The Throwable.
-
-