paintException() 공개 메소드

Paints a PHP error or exception.
public paintException ( Exception $exception )
$exception Exception Exception to describe.
예제 #1
0
 /**
  * Paint exception faildetail to STDERR.
  */
 function paintException($message)
 {
     parent::paintException($message);
     fwrite(STDERR, 'EXCEPTION' . $this->faildetail_separator . $this->_paintTestFailDetail($message));
 }
예제 #2
0
파일: all.php 프로젝트: vierbergenlars/gihp
 public function paintException($exception)
 {
     parent::paintException($exception);
     print $exception->getTraceAsString();
     print "\n";
 }
예제 #3
0
 function paintException($exception)
 {
     parent::paintException($exception);
     print "Exception full message:\n";
     print $exception->__toString();
     $this->failed_tests[] = '[EXP] ' . $this->_extractExceptionFileAndLine($exception);
 }