MnsException.php
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
namespace AliyunMNS\Exception;
class MnsException extends \RuntimeException
{
private $mnsErrorCode;
private $requestId;
private $hostId;
public function __construct($code, $message, $previousException = NULL, $mnsErrorCode = NULL, $requestId = NULL, $hostId = NULL)
{
parent::__construct($message, $code, $previousException);
if ($mnsErrorCode == NULL)
{
if ($code >= 500)
{
$mnsErrorCode = "ServerError";
}
else
{
$mnsErrorCode = "ClientError";
}
}
$this->mnsErrorCode = $mnsErrorCode;
$this->requestId = $requestId;
$this->hostId = $hostId;
}
public function __toString()
{
$str = "Code: " . $this->getCode() . " Message: " . $this->getMessage();
if ($this->mnsErrorCode != NULL)
{
$str .= " MnsErrorCode: " . $this->mnsErrorCode;
}
if ($this->requestId != NULL)
{
$str .= " RequestId: " . $this->requestId;
}
if ($this->hostId != NULL)
{
$str .= " HostId: " . $this->hostId;
}
return $str;
}
public function getMnsErrorCode()
{
return $this->mnsErrorCode;
}
public function getRequestId()
{
return $this->requestId;
}
public function getHostId()
{
return $this->hostId;
}
}
?>