| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /**
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved
- */
- /**
- * The Exception of the log serivce request & response.
- *
- * @author log service dev
- */
- class Aliyun_Log_Exception extends Exception{
- /**
- * @var string
- */
- private $requestId;
-
- /**
- * Aliyun_Log_Exception constructor
- *
- * @param string $code
- * log service error code.
- * @param string $message
- * detailed information for the exception.
- * @param string $requestId
- * the request id of the response, '' is set if client error.
- */
- public function __construct($code, $message, $requestId='') {
- parent::__construct($message);
- $this->code = $code;
- $this->message = $message;
- $this->requestId = $requestId;
- }
-
- /**
- * The __toString() method allows a class to decide how it will react when
- * it is treated like a string.
- *
- * @return string
- */
- public function __toString() {
- return "Aliyun_Log_Exception: \n{\n ErrorCode: $this->code,\n ErrorMessage: $this->message\n RequestId: $this->requestId\n}\n";
- }
-
- /**
- * Get Aliyun_Log_Exception error code.
- *
- * @return string
- */
- public function getErrorCode() {
- return $this->code;
- }
-
- /**
- * Get Aliyun_Log_Exception error message.
- *
- * @return string
- */
- public function getErrorMessage() {
- return $this->message;
- }
-
- /**
- * Get log service sever requestid, '' is set if client or Http error.
- *
- * @return string
- */
- public function getRequestId() {
- return $this->requestId;
- }
- }
|