Class FileIsADirectoryException

  • All Implemented Interfaces:
    java.io.Serializable

    public class FileIsADirectoryException
    extends java.lang.Exception
    Exception if the file is a directory.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      FileIsADirectoryException()
      Default constructor.
      FileIsADirectoryException​(java.lang.String message)
      Constructs a new FileIsADirectoryException with the specified detail message.
      FileIsADirectoryException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new FileIsADirectoryException with the specified detail message and the Throwable.
      FileIsADirectoryException​(java.lang.Throwable cause)
      Constructs a FileIsADirectoryException 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
      • Methods inherited from class java.lang.Object

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

      • FileIsADirectoryException

        public FileIsADirectoryException()
        Default constructor.
      • FileIsADirectoryException

        public FileIsADirectoryException​(java.lang.String message)
        Constructs a new FileIsADirectoryException with the specified detail message.
        Parameters:
        message - The message.
      • FileIsADirectoryException

        public FileIsADirectoryException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Constructs a new FileIsADirectoryException with the specified detail message and the Throwable.
        Parameters:
        message - The message.
        cause - The Throwable.
      • FileIsADirectoryException

        public FileIsADirectoryException​(java.lang.Throwable cause)
        Constructs a FileIsADirectoryException with the Throwable.
        Parameters:
        cause - The Throwable.