Class FileDoesNotExistException

  • All Implemented Interfaces:
    java.io.Serializable

    public class FileDoesNotExistException
    extends java.lang.Exception
    This Exception is thrown when the file is not found or does not exist.
    See Also:
    Serialized Form
    • Constructor Summary

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

      • FileDoesNotExistException

        public FileDoesNotExistException()
        Default constructor.
      • FileDoesNotExistException

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

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

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