summaryrefslogtreecommitdiff
path: root/src/localbrowser/LocalBrowserModelException.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/localbrowser/LocalBrowserModelException.h')
-rw-r--r--src/localbrowser/LocalBrowserModelException.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/localbrowser/LocalBrowserModelException.h b/src/localbrowser/LocalBrowserModelException.h
deleted file mode 100644
index 5146c53..0000000
--- a/src/localbrowser/LocalBrowserModelException.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef STAMPSMODELEXCEPTION_H_
-#define STAMPSMODELEXCEPTION_H_
-
-#include <string>
-#include <exception>
-using namespace std;
-
-class LocalBrowserModelException {
- string message;
-public:
- LocalBrowserModelException(string message_): message(message_) {};
- const char * what() const throw() { return message.c_str(); };
- ~LocalBrowserModelException() throw() {};
-};
-
-#endif /* STAMPSMODELEXCEPTION_H_ */