Class NoListAccessException

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

public class NoListAccessException extends FileSystemException
This exception is thrown when a list (lookup) access was denied.
See Also:
  • Constructor Details

    • NoListAccessException

      public NoListAccessException(String aMessage, String aErrorCode)
      Instantiates a new no list access exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • NoListAccessException

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

      public NoListAccessException(String aMessage, Throwable aCause)
      Instantiates a new no list access exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • NoListAccessException

      public NoListAccessException(String aMessage)
      Instantiates a new no list access exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • NoListAccessException

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

      public NoListAccessException(Throwable aCause)
      Instantiates a new no list access exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.