00001
00034 #ifndef EXCEPTIONHANDLER_H
00035 #define EXCEPTIONHANDLER_H
00036
00037 #include <exception>
00038 #include <string>
00039
00040 #include "oldgcccompat.h"
00041
00042 namespace AlarmNotifications {
00043
00054 void ExceptionHandler ( std::exception& e, std::string location, const bool quit = false ) noexcept;
00064 void ExceptionHandler ( std::string location, const bool quit = false ) noexcept;
00065
00066 }
00067 #endif