コード例 #1
0
ファイル: skip.php プロジェクト: xihewang/atoum
 public function __construct($message)
 {
     parent::__construct($message);
 }
コード例 #2
0
ファイル: exception.php プロジェクト: xihewang/atoum
 public function __construct($message, $errorLine, $errorOffset, $previousException = null)
 {
     parent::__construct($message, 0, $previousException);
     $this->errorLine = $errorLine;
     $this->errorOffset = $errorOffset;
 }