/* * File: exception.h * Author: bkwiatek */ #ifndef EXCEPTION_H #define EXCEPTION_H #ifdef __cplusplus extern "C" { #endif /* * A simple exception class * You can create an exeption by entering * throw Exception("...Error description..."); * And get the error message from the data msg for displaying: * err.msg */ class Exception { public: const char* msg; Exception(const char* arg) : msg(arg) { } }; #ifdef __cplusplus } #endif #endif /* EXCEPTION_H */