_code = $code ? $code : self::LOCAL_ERROR_CODE; $this->_message = $message; $this->_ext = $ext; } /** * getCode * 获取错误号 */ public function getCode() { return $this->_code; } /** * getMessage * 获取错误信息 */ public function getMessage() { return $this->_message; } /** * getExt * 获取扩展信息 */ public function getExt() { return $this->_ext; } }