exception base class More...
#include <stdexcept>#include <string>

Go to the source code of this file.
Classes | |
| class | op_exception |
| exception abstract base class More... | |
| struct | op_fatal_error |
| fatal exception, never catch it except at top level (likely main or gui). More... | |
| struct | op_runtime_error |
| Encapsulate a runtime error with or w/o a valid errno. More... | |
exception base class
This provide simple base class for exception object. All exception are derived from directly or indirectly from std::exception. This class are not itended to be catched in your code except at top level, derive what you want and catch derived class rather.
1.6.1