/****************************************************************************** ** ** CmdlineEx.java ** ** Thu Oct 4 20:10:00 2007 ** Linux 2.6.19 (#1 Sun Jan 21 11:52:23 CET 2007) i686 ** linux@mgpc (Michael Geng) ** ** Interface of the command line parser class ** ** Automatically created by genparse v0.7.1 ** ** See http://genparse.sourceforge.net for details and updates ** ******************************************************************************/ /*---------------------------------------------------------------------------- ** ** class CmdlineEx ** ** Exception class thrown by the command line parser class ** **--------------------------------------------------------------------------*/ public class CmdlineEx extends RuntimeException { public CmdlineEx (String text) { super (text); } }