Class DirectoryAlreadyExistsException

java.lang.Object
java.lang.Throwable
java.lang.Exception
io.github.astrapi69.file.exception.DirectoryAlreadyExistsException
All Implemented Interfaces:
Serializable

public class DirectoryAlreadyExistsException extends Exception
Exception that is thrown if an attempt is made to create a directory that already exists
See Also:
  • Constructor Details

    • DirectoryAlreadyExistsException

      public DirectoryAlreadyExistsException()
      Constructs a new DirectoryAlreadyExistsException object
    • DirectoryAlreadyExistsException

      public DirectoryAlreadyExistsException(String message)
      Constructs a new DirectoryAlreadyExistsException with the specified detail message.
      Parameters:
      message - The error message.
    • DirectoryAlreadyExistsException

      public DirectoryAlreadyExistsException(String message, 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(Throwable cause)
      Constructs a DirectoryAlreadyExistsException with the Throwable.
      Parameters:
      cause - The Throwable.