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

  1. package jargs.gnu;
  2.  
  3. public class CmdLineParser$NotFlagException extends CmdLineParser.UnknownOptionException {
  4.    private char notflag;
  5.  
  6.    CmdLineParser$NotFlagException(String option, char unflaggish) {
  7.       super(option, "Illegal option: '" + option + "', '" + unflaggish + "' requires a value");
  8.       this.notflag = unflaggish;
  9.    }
  10.  
  11.    public char getOptionChar() {
  12.       return this.notflag;
  13.    }
  14. }
  15.