summaryrefslogtreecommitdiff
path: root/lib/common/BoxException.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common/BoxException.h')
-rwxr-xr-xlib/common/BoxException.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/common/BoxException.h b/lib/common/BoxException.h
new file mode 100755
index 00000000..eb992f57
--- /dev/null
+++ b/lib/common/BoxException.h
@@ -0,0 +1,37 @@
+// --------------------------------------------------------------------------
+//
+// File
+// Name: BoxException.h
+// Purpose: Exception
+// Created: 2003/07/10
+//
+// --------------------------------------------------------------------------
+
+#ifndef BOXEXCEPTION__H
+#define BOXEXCEPTION__H
+
+#include <exception>
+
+// --------------------------------------------------------------------------
+//
+// Class
+// Name: BoxException
+// Purpose: Exception
+// Created: 2003/07/10
+//
+// --------------------------------------------------------------------------
+class BoxException : public std::exception
+{
+public:
+ BoxException();
+ ~BoxException() throw ();
+
+ virtual unsigned int GetType() const throw() = 0;
+ virtual unsigned int GetSubType() const throw() = 0;
+
+private:
+};
+
+
+#endif // BOXEXCEPTION__H
+