#include <string>
#include "LOW_platformMiscFactory.h"
#include "LOW_objectSynchronizerMacros.h"
Include dependency graph for LOW_exception.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
class | LOW_exception |
Base class for all exception of this library. More... | |
Defines | |
#define | class_DERIVE_FROM_EXCEPTION(DERIVED, SUPER) |
Macro for easy subclassing of LOW_exception. |
|
Value: class DERIVED : public SUPER { \ public: DERIVED( const std::string inMsg, const std::string inFile, const int inLine) : SUPER( inMsg, inFile, inLine) {}; \ DERIVED( const int inErrNum, const std::string inMsg, const std::string inFile, const int inLine) : SUPER( inErrNum, inMsg, inFile, inLine) {}; \ }
Definition at line 32 of file LOW_exception.h. |