コード例 #1
0
ファイル: Exception.php プロジェクト: bersace/strass
 function __construct($message = null, $code = 500, $aide = null)
 {
     parent::__construct($message, $code);
     $this->aide = $aide;
 }
コード例 #2
0
ファイル: Exception.php プロジェクト: n3yang/api.paimaihui
 public function __construct($msg = '', $code = 0, Exception $previous = null)
 {
     parent::__construct($msg, $code, $previous);
 }