diff options
author | Florian Pritz <bluewind@xinu.at> | 2015-06-04 22:09:05 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2015-06-04 22:09:05 +0200 |
commit | 048410164d2a17bbb588e43351e44eeb81610960 (patch) | |
tree | 0331c096d68d78496342accbd92b341113fe72b3 /application/controllers/tools.php | |
parent | 8b3525c2b79f74089b623ca6870ddb9b06270e5d (diff) |
Refactor exception handling into dedicated class
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/controllers/tools.php')
-rw-r--r-- | application/controllers/tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/controllers/tools.php b/application/controllers/tools.php index f2fa1f97c..f0d8ce6f9 100644 --- a/application/controllers/tools.php +++ b/application/controllers/tools.php @@ -89,7 +89,7 @@ class Tools extends MY_Controller { $test->cleanup(); } catch (\Exception $e) { echo "not ok - uncaught exception in {$testcase}->{$method->name}\n"; - _actual_exception_handler($e); + \libraries\ExceptionHandler::exception_handler($e); $exitcode = 255; } } |