コード例 #1
0
ファイル: user.php プロジェクト: Kheros/MMOver
 /**
  * Creates a 404 exception with the given message
  *
  * @param string $message					- A user friendly error
  * @param int $code							- The PHP code of the error
  * @param string $file						- The file the exception was thrown from
  * @param int $line							- The line the exception was thrown from
  */
 public function __construct($message = false, $code = false, $file = false, $line = false)
 {
     // Standard exception initialisation
     parent::__construct(vB_Router::get409Path(), $message, $code, $file, $line);
 }