/**
  * @param  string  $name
  * @param  string  $exceptionName
  * @access public
  */
 public function __construct($name, $exceptionName)
 {
     parent::__construct($name);
     $this->expected = $exceptionName;
 }
Exemplo n.º 2
0
 /**
  * @param  string  $message
  * @access public
  */
 public function __construct($message = '')
 {
     $this->message = $message;
     parent::__construct('Warning');
 }
Exemplo n.º 3
0
 public function __construct($name)
 {
     parent::__construct($name);
 }