24 parent::runProcessingException($e);
25 $exceptionHandling = Configuration::getValue(
'exception_handling');
26 if (!empty($exceptionHandling[
'debug']))
28 $trace = $e->getTrace();
30 $traceLength = count($trace);
32 $this->
addError(
new Error($e->getFile() .
':' . $e->getLine()));
35 for ($i = 0; $i < $traceLength && $i < 3; $i++)
37 $this->
addError(
new Error(
'#' . $i .
' ' . $trace[$i][
'file'] .
':' . $trace[$i][
'line'] .
' ' . $trace[$i][
'function']));