Class FileSystemAccessException

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

public class FileSystemAccessException extends FileSystemRuntimeException
The Class FileSystemAccessException.
See Also:
  • Constructor Details

    • FileSystemAccessException

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

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

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

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

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

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