#include <ValueNotFoundError.h>
Inheritance diagram for Core::ValueNotFoundError:
Public Member Functions | |
ValueNotFoundError (const char *selector=NULL, Object *key=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 ValueNotFoundError.h. 00036 : NotFoundError(selector, key) {};
|
|
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 Core::NotFoundError. Definition at line 39 of file ValueNotFoundError.h. 00040 { return new String("ValueNotFoundError"); }
|
|
Reimplemented from Core::NotFoundError. Definition at line 43 of file ValueNotFoundError.h. 00044 { return new String("Value not found"); }
|
|
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 Core::NotFoundError. Definition at line 48 of file ValueNotFoundError.h. 00049 { throw this; }
|