Class for virtual base functions that are not implemented. More...
#include <Exceptions.h>
Class for virtual base functions that are not implemented.
In general, it's best to implement abstract class interfaces with pure virtual functions. However, there are some situations where not all children of the base class will implement a function. This exception is meant to be used in such a case. It should be raised in the base classes virtual function. When children override this function, no exception will be thrown.
Definition at line 21 of file Exceptions.h.
Public Member Functions | |
NotImplementedError (std::string const &message) | |
|
inline |
Definition at line 24 of file Exceptions.h.