Class FileSystemException

  • All Implemented Interfaces:
    java.io.Serializable

    public class FileSystemException
    extends StorageException
    This class represents errors that occur while opening, closing and manipulating files.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      FileSystemException()
      Construct a storage exception with no message.
      FileSystemException​(java.lang.String msg)
      Construct a file exception with the specified message.
      FileSystemException​(java.lang.String msg, java.lang.Throwable cause)
      Construct a file exception with the specified message and cause.
      FileSystemException​(java.lang.Throwable cause)
      Construct a file exception with the specified cause and no message.
    • 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

      • FileSystemException

        public FileSystemException()
        Construct a storage exception with no message.
      • FileSystemException

        public FileSystemException​(java.lang.String msg)
        Construct a file exception with the specified message.
      • FileSystemException

        public FileSystemException​(java.lang.Throwable cause)
        Construct a file exception with the specified cause and no message.
      • FileSystemException

        public FileSystemException​(java.lang.String msg,
                                   java.lang.Throwable cause)
        Construct a file exception with the specified message and cause.