summaryrefslogtreecommitdiff
path: root/src/origexception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/origexception.cpp')
-rw-r--r--src/origexception.cpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/origexception.cpp b/src/origexception.cpp
deleted file mode 100644
index f64d696..0000000
--- a/src/origexception.cpp
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * Implementation of the exception that was originally thrown by PHP
- * code or the zend engine, and that could or could not be picked
- * up by C++ code
- *
- * @author Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
- * @copyright 2013 Copernica BV
- */
-#include "includes.h"
-
-/**
- * Set up namespace
- */
-namespace Php {
-
-/**
- * Destructor
- */
-OrigException::~OrigException() noexcept
-{
- // skip if the exception was restored
- if (_restored) return;
-
- // we need the tsrm_ls var
- TSRMLS_FETCH();
-
- // clean up the exception, because it was handled in C++ code
- zend_clear_exception(TSRMLS_C);
-}
-
-/**
- * End of namespace
- */
-}
-