AlibabaCloudException.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. namespace AlibabaCloud\Client\Exception;
  3. use Exception;
  4. use RuntimeException;
  5. /**
  6. * Class AlibabaCloudException
  7. *
  8. * @package AlibabaCloud\Client\Exception
  9. */
  10. abstract class AlibabaCloudException extends Exception
  11. {
  12. /**
  13. * @var string
  14. */
  15. protected $errorCode;
  16. /**
  17. * @var string
  18. */
  19. protected $errorMessage;
  20. /**
  21. * @return string
  22. */
  23. public function getErrorCode()
  24. {
  25. return $this->errorCode;
  26. }
  27. /**
  28. * @codeCoverageIgnore
  29. * @deprecated
  30. */
  31. public function setErrorCode()
  32. {
  33. throw new RuntimeException('deprecated since 2.0.');
  34. }
  35. /**
  36. * @return string
  37. */
  38. public function getErrorMessage()
  39. {
  40. return $this->errorMessage;
  41. }
  42. /**
  43. * @codeCoverageIgnore
  44. *
  45. * @param $errorMessage
  46. *
  47. * @deprecated
  48. */
  49. public function setErrorMessage($errorMessage)
  50. {
  51. $this->errorMessage = $errorMessage;
  52. }
  53. /**
  54. * @codeCoverageIgnore
  55. * @deprecated
  56. */
  57. public function setErrorType()
  58. {
  59. }
  60. }