#include <CmdLineUnsufficientParams.h>
Inheritance diagram for Tools::CommandLineUnsufficientParameters:
Public Member Functions | |
CommandLineUnsufficientParameters (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 CmdLineUnsufficientParams.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 CmdLineUnsufficientParams.h. 00040 { return new String("CommandLineUnsufficientParameters"); }
|
|
Reimplemented from Tools::CommandLineParserError. Definition at line 43 of file CmdLineUnsufficientParams.h. 00044 { return new String("Command line does not contain enough parameters"); }
|
|
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 CmdLineUnsufficientParams.h. 00049 { throw this; }
|