#ifndef _APPEXCEPTIONS_H__ #define _APPEXCEPTIONS_H__ #include class app_error { const char*_msg; public: app_error(const char*msg) : _msg(msg) { } ~app_error() { printf("APPERROR: %s\n", _msg); } }; #endif