Fix use for Exception class.
This commit is contained in:
David Callizaya
2017-08-15 12:19:42 -04:00
parent d25346e06e
commit 69840eb649

View File

@@ -1649,7 +1649,7 @@ class Cases
}
}
return $caseVariable;
} catch (\Exception $e) {
} catch (Exception $e) {
throw $e;
}
}