Class NoDeleteAccessException

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

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

    • NoDeleteAccessException

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

      public NoDeleteAccessException(FileHandle aFile, String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new no delete 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.
    • NoDeleteAccessException

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

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

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

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