Common/Exceptions/ServiceException.php
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
\Aliyun\Common\Exceptions\ServiceException
Package: Aliyun\Common\Exceptions


表示阿里云服务返回的错误消息。
ServiceException用于处理阿里云服务返回的错误消息。比如,用于身份验证的Access ID不存在, 则会抛出ServiceException(严格上讲,会是该类的一个继承类。比如,OTSClient会抛出OTSException)。 异常中包含了错误代码,用于让调用者进行特定的处理。
ClientException表示的则是在向阿里云服务发送请求时出现的错误,以及客户端无法处理返回结果。 例如,在发送请求时网络连接不可用,则会抛出ClientException的异常。
通常来讲,调用者只需要处理ClientException。因为该异常表明请求被服务处理,但处理的结果表明 存在错误。异常中包含了细节的信息,特别是错误代码,可以帮助调用者进行处理。
- Parent(s)
- \RuntimeException
- Children
- \Aliyun\OSS\Exceptions\OSSException
Properties
Methods


__construct( $errorCode, $message, $requestId, $hostId) : void
Parameters
Name | Type | Description |
---|---|---|
$errorCode | ||
$message | ||
$requestId | ||
$hostId |


getErrorCode() : \Aliyun\Common\Exceptions\错误代码
返回错误代码
Returns
Type | Description |
---|---|
\Aliyun\Common\Exceptions\错误代码 |


getHostId() : \Aliyun\Common\Exceptions\Host标识。
返回Host标识。
Returns
Type | Description |
---|---|
\Aliyun\Common\Exceptions\Host标识。 |