Class UnknownFileSystemException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.filesystem.FileSystemException
org.refcodes.filesystem.UnknownFileSystemException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class UnknownFileSystemException extends FileSystemException
This exception is thrown whenever a file system to be accessed which does not exist (any more). E.g. a namespace was removed or renamed for a ChangeRootFileSystemWrapperImpl.
See Also:
  • Constructor Details

    • UnknownFileSystemException

      public UnknownFileSystemException(String aMessage, String aErrorCode)
      Instantiates a new unknown file system exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • UnknownFileSystemException

      public UnknownFileSystemException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new unknown file system exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • UnknownFileSystemException

      public UnknownFileSystemException(String aMessage, Throwable aCause)
      Instantiates a new unknown file system exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • UnknownFileSystemException

      public UnknownFileSystemException(String aMessage)
      Instantiates a new unknown file system exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • UnknownFileSystemException

      public UnknownFileSystemException(Throwable aCause, String aErrorCode)
      Instantiates a new unknown file system exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • UnknownFileSystemException

      public UnknownFileSystemException(Throwable aCause)
      Instantiates a new unknown file system exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.