芝麻web文件管理V1.00
编辑当前文件:/home/prismawe/www/resupres/modules/database/classes/kohana/database/exception.php
$user)); * * @param string raw DB error code * @param string error message * @param array translation variables * @param integer the exception code * @return void */ public function __construct($db_code, $message, array $variables = NULL, $code = 0) { $this->db_code = $db_code; parent::__construct($message, $variables, $code); } /** * Gets the DB error code * * @return string */ public function db_code() { return $this->db_code; } }