12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- namespace AlibabaCloud\Client\Exception;
- use Exception;
- use RuntimeException;
- /**
- * Class AlibabaCloudException
- *
- * @package AlibabaCloud\Client\Exception
- */
- abstract class AlibabaCloudException extends Exception
- {
- /**
- * @var string
- */
- protected $errorCode;
- /**
- * @var string
- */
- protected $errorMessage;
- /**
- * @return string
- */
- public function getErrorCode()
- {
- return $this->errorCode;
- }
- /**
- * @codeCoverageIgnore
- * @deprecated
- */
- public function setErrorCode()
- {
- throw new RuntimeException('deprecated since 2.0.');
- }
- /**
- * @return string
- */
- public function getErrorMessage()
- {
- return $this->errorMessage;
- }
- /**
- * @codeCoverageIgnore
- *
- * @param $errorMessage
- *
- * @deprecated
- */
- public function setErrorMessage($errorMessage)
- {
- $this->errorMessage = $errorMessage;
- }
- /**
- * @codeCoverageIgnore
- * @deprecated
- */
- public function setErrorType()
- {
- }
- }
|