summaryrefslogtreecommitdiff
path: root/src/OutOfMemoryException.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/OutOfMemoryException.cxx')
-rw-r--r--src/OutOfMemoryException.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/OutOfMemoryException.cxx b/src/OutOfMemoryException.cxx
new file mode 100644
index 0000000..9fee368
--- /dev/null
+++ b/src/OutOfMemoryException.cxx
@@ -0,0 +1,10 @@
+namespace PluggIt {
+
+class OutOfMemoryException extends Exception
+{
+ public OutOfMemoryException() : Exception( "Out of memory!" ) {
+ }
+};
+
+}
+