Fix undefined variable $ex

This commit is contained in:
Thomas Müller 2016-05-02 13:10:03 +02:00
parent b8650be732
commit 211e518e16
1 changed files with 1 additions and 1 deletions

View File

@ -166,5 +166,5 @@ try {
} catch (Exception $ex) { } catch (Exception $ex) {
handleException($ex); handleException($ex);
} catch (Error $e) { } catch (Error $e) {
handleException($ex); handleException($e);
} }