Class 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
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • 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.