コード例 #1
0
 /**
  * @param  string  $name
  * @param  string  $exceptionName
  * @access public
  */
 public function __construct($name, $exceptionName)
 {
     parent::__construct($name);
     $this->expected = $exceptionName;
 }
コード例 #2
0
ファイル: Warning.php プロジェクト: ookwudili/chisimba
 /**
  * @param  string  $message
  * @access public
  */
 public function __construct($message = '')
 {
     $this->message = $message;
     parent::__construct('Warning');
 }
コード例 #3
0
ファイル: Bug9917.php プロジェクト: manishkhanchandani/mkgxy
 public function __construct($name)
 {
     parent::__construct($name);
 }