Class FileSystemRuntimeException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.refcodes.exception.AbstractRuntimeException
org.refcodes.filesystem.FileSystemRuntimeException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
FileSystemAccessException

public abstract class FileSystemRuntimeException extends org.refcodes.exception.AbstractRuntimeException
The Class FileSystemRuntimeException.
See Also:
  • Constructor Details

    • FileSystemRuntimeException

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

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

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

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

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

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