Uses of Class
bcds.tools.ArgsParserException.ErrorCode

Packages that use ArgsParserException.ErrorCode
bcds.tools   
 

Uses of ArgsParserException.ErrorCode in bcds.tools
 

Methods in bcds.tools that return ArgsParserException.ErrorCode
 ArgsParserException.ErrorCode ArgsParserException.getErrorCode()
          Returns the error code associated to this exception.
static ArgsParserException.ErrorCode ArgsParserException.ErrorCode.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ArgsParserException.ErrorCode[] ArgsParserException.ErrorCode.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in bcds.tools with parameters of type ArgsParserException.ErrorCode
static void ArgsParser.raise(ArgsParserException.ErrorCode err, java.lang.String msg)
          Throws an exception with the given error code and message.
static void ArgsParser.raise(ArgsParserException.ErrorCode err, java.lang.String fmt, java.lang.Object... msg)
          Throws an exception with the given error code and message.
 

Constructors in bcds.tools with parameters of type ArgsParserException.ErrorCode
ArgsParserException(ArgsParserException.ErrorCode err, java.lang.String msg)
          Creates an instance with the given error code and message.
ArgsParserException(ArgsParserException.ErrorCode err, java.lang.String fmt, java.lang.Object... message)
          Creates an instance with the given error code and formatted message.