Class CliException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.refcodes.exception.AbstractException
org.refcodes.cli.CliException
All Implemented Interfaces:
Serializable, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap
Direct Known Subclasses:
CliException.ConsoleArgsException, CliException.ConsoleCliException

public abstract class CliException extends org.refcodes.exception.AbstractException
Base exception for the console artifact.
Author:
steiner
See Also:
  • Constructor Details

    • CliException

      public CliException(String aMessage, String aErrorCode)
      Instantiates a new console exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • CliException

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

      public CliException(String aMessage, Throwable aCause)
      Instantiates a new console exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • CliException

      public CliException(String aMessage)
      Instantiates a new console exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • CliException

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

      public CliException(Throwable aCause)
      Instantiates a new console exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.