_handleException() protected method

Normalizes Exception objects and PHP error data into a single array format then the error data is logged to the test results.
See also: lithium\test\Unit::_reportException()
protected _handleException ( mixed $exception, integer $lineFlag = null ) : void
$exception mixed An `Exception` object instance, or an array containing the following keys: `'message'`, `'file'`, `'line'`, `'trace'` (in `debug_backtrace()` format) and optionally `'code'` (error code number) and `'context'` (an array of variables relevant to the scope of where the error occurred).
$lineFlag integer A flag used for determining the relevant scope of the call stack. Set to the line number where test methods are called.
return void
 public function handleException($exception, $lineFlag = null)
 {
     return parent::_handleException($exception, $lineFlag);
 }