Class NoReadAccessException

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

public class NoReadAccessException extends FileSystemException
The Class NoReadAccessException.
See Also:
  • Constructor Details

    • NoReadAccessException

      public NoReadAccessException(FileHandle aFile, String aMessage, String aErrorCode)
      Instantiates a new no read access exception.
      Parameters:
      aFile - the file
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • NoReadAccessException

      public NoReadAccessException(FileHandle aFile, String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new no read access exception.
      Parameters:
      aFile - the file
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • NoReadAccessException

      public NoReadAccessException(FileHandle aFile, String aMessage, Throwable aCause)
      Instantiates a new no read access exception.
      Parameters:
      aFile - the file
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • NoReadAccessException

      public NoReadAccessException(FileHandle aFile, String aMessage)
      Instantiates a new no read access exception.
      Parameters:
      aFile - the file
      aMessage - The aMessage describing this exception.
    • NoReadAccessException

      public NoReadAccessException(FileHandle aFile, Throwable aCause, String aErrorCode)
      Instantiates a new no read access exception.
      Parameters:
      aFile - the file
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • NoReadAccessException

      public NoReadAccessException(FileHandle aFile, Throwable aCause)
      Instantiates a new no read access exception.
      Parameters:
      aFile - the file
      aCause - The Throwable (Exception) causing this exception.
  • Method Details