Class SuperfluousArgsException

All Implemented Interfaces:
Serializable, ArgsAccessor, org.refcodes.exception.ErrorCodeAccessor, org.refcodes.exception.Trap

public class SuperfluousArgsException extends ArgsSyntaxException
Thrown in case there were arguments found not being used (superfluous arguments).
See Also:
  • Constructor Details

    • SuperfluousArgsException

      public SuperfluousArgsException(String[] aArgs, String aMessage, String aErrorCode)
      Instantiates a new superfluous args exception.
      Parameters:
      aArgs - the args
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • SuperfluousArgsException

      public SuperfluousArgsException(String[] aArgs, String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new superfluous args exception.
      Parameters:
      aArgs - the args
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • SuperfluousArgsException

      public SuperfluousArgsException(String[] aArgs, String aMessage, Throwable aCause)
      Instantiates a new superfluous args exception.
      Parameters:
      aArgs - the args
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • SuperfluousArgsException

      public SuperfluousArgsException(String[] aArgs, String aMessage)
      Instantiates a new superfluous args exception.
      Parameters:
      aArgs - the args
      aMessage - The aMessage describing this exception.
    • SuperfluousArgsException

      public SuperfluousArgsException(String[] aArgs, Throwable aCause, String aErrorCode)
      Instantiates a new superfluous args exception.
      Parameters:
      aArgs - the args
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • SuperfluousArgsException

      public SuperfluousArgsException(String[] aArgs, Throwable aCause)
      Instantiates a new superfluous args exception.
      Parameters:
      aArgs - the args
      aCause - The Throwable (Exception) causing this exception.