home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 June / maximum-cd-2009-06.iso / DiscContents / digsby_setup.exe / lib / plugins / researchdriver / res / process.jar / jargs / gnu / CmdLineParser$IllegalOptionValueException.class (.txt) < prev    next >
Encoding:
Java Class File  |  2005-04-09  |  1.3 KB  |  21 lines

  1. package jargs.gnu;
  2.  
  3. public class CmdLineParser$IllegalOptionValueException extends CmdLineParser.OptionException {
  4.    private CmdLineParser.Option option;
  5.    private String value;
  6.  
  7.    public CmdLineParser$IllegalOptionValueException(CmdLineParser.Option opt, String value) {
  8.       super("Illegal value '" + value + "' for option " + (opt.shortForm() != null ? "-" + opt.shortForm() + "/" : "") + "--" + opt.longForm());
  9.       this.option = opt;
  10.       this.value = value;
  11.    }
  12.  
  13.    public CmdLineParser.Option getOption() {
  14.       return this.option;
  15.    }
  16.  
  17.    public String getValue() {
  18.       return this.value;
  19.    }
  20. }
  21.