Class AmbiguousArgsException

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

public class AmbiguousArgsException extends ArgsSyntaxException
Thrown in case the command line arguments do not match the required syntax.
See Also:
  • Constructor Details

    • AmbiguousArgsException

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

      public AmbiguousArgsException(String[] aArgs, String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new ambiguous 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.
    • AmbiguousArgsException

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

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

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

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