_handleException() 보호된 메소드

Normalizes Exception objects and PHP error data into a single array format then the error data is logged to the test results.
또한 보기: 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.
리턴 void
예제 #1
0
 public function handleException($exception, $lineFlag = null)
 {
     return parent::_handleException($exception, $lineFlag);
 }