コード例 #1
0
 public function __construct($regex, $message)
 {
     parent::__construct('regular expression is malformed: "' . $regex . '"<br />' . $message);
 }
コード例 #2
0
 public function __construct($controller)
 {
     parent::__construct('Class "' . $controller . '" is not a valid controller (does not implement Controller)');
 }
コード例 #3
0
 public function __construct($url)
 {
     parent::__construct('No pattern matching this url "' . $url . '" in the dispatcher\'s list');
 }
コード例 #4
0
 /**
  *
  * @param int $code See the constants defined in this class
  * @param string $message
  */
 public function __construct($code, $message = null, $previous = null)
 {
     parent::__construct($message, $code, $previous);
 }