Class IllegalFileHandleException

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

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

    • IllegalFileHandleException

      public IllegalFileHandleException(FileHandle aFile, String aMessage, String aErrorCode)
      Instantiates a new illegal file handle exception.
      Parameters:
      aFile - the file
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • IllegalFileHandleException

      public IllegalFileHandleException(FileHandle aFile, String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new illegal file handle 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.
    • IllegalFileHandleException

      public IllegalFileHandleException(FileHandle aFile, String aMessage, Throwable aCause)
      Instantiates a new illegal file handle exception.
      Parameters:
      aFile - the file
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • IllegalFileHandleException

      public IllegalFileHandleException(FileHandle aFile, String aMessage)
      Instantiates a new illegal file handle exception.
      Parameters:
      aFile - the file
      aMessage - The aMessage describing this exception.
    • IllegalFileHandleException

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

      public IllegalFileHandleException(FileHandle aFile, Throwable aCause)
      Instantiates a new illegal file handle exception.
      Parameters:
      aFile - the file
      aCause - The Throwable (Exception) causing this exception.
  • Method Details