summaryrefslogtreecommitdiff
path: root/src/Exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Exception.h')
-rw-r--r--src/Exception.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Exception.h b/src/Exception.h
new file mode 100644
index 0000000..821f569
--- /dev/null
+++ b/src/Exception.h
@@ -0,0 +1,18 @@
+#include <string>
+
+namespace PluggIt {
+
+class Exception
+{
+public:
+ Exception( std::string message );
+
+ Exception( const char *format, ... ) D_FORMAT_PRINTF(2);
+
+ std::string getMessage();
+
+ friend std::ostream &operator << (std::ostream &stream, Exception *ex);
+};
+
+}
+