summaryrefslogtreecommitdiff
path: root/include/exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/exception.h')
-rw-r--r--include/exception.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/exception.h b/include/exception.h
index 5bcc26a..8475925 100644
--- a/include/exception.h
+++ b/include/exception.h
@@ -54,6 +54,16 @@ public:
{
return _message;
}
+
+ /**
+ * Process the exception
+ *
+ * This method is called only from withing the PHP-CPP library,
+ * and will turn the exception into a PHP exception
+ *
+ * @internal
+ */
+ virtual void process();
};
/**