#include <CmdLineUnknownArgument.h>
Inheritance diagram for Tools::CommandLineUnknownArgument:
Public Member Functions | |
CommandLineUnknownArgument (const char *selector=NULL, Object *param=nil) | |
virtual String * | className (void) const |
Answer receiver class name. | |
virtual String * | notifierString (void) |
Protected Member Functions | |
virtual void | privRaise (void) |
This method really throws the receiver as an exception. |
|
Definition at line 35 of file CmdLineUnknownArgument.h. 00036 : CommandLineParserError(nil, selector, param) {}
|
|
Answer receiver class name. Because there isn't any standard way to obtain class name this method comes to place. Every class should rewrite this method but many didn't (yet). Reimplemented from Tools::CommandLineParserError. Definition at line 39 of file CmdLineUnknownArgument.h. 00040 { return new String("CommandLineUnknownArgument"); }
|
|
Reimplemented from Tools::CommandLineParserError. Definition at line 43 of file CmdLineUnknownArgument.h. 00044 { return new String("Command line unknown argument"); }
|
|
This method really throws the receiver as an exception. Every subclass MUST reimplement this method, even if it's parent does. This is because of poor object type handling in C++. :-( Reimplemented from Tools::CommandLineParserError. Definition at line 48 of file CmdLineUnknownArgument.h. 00049 { throw this; }
|