f0d6cde5
xu
vendor
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
namespace AlibabaCloud\Client;
/**
* Class SDK
*
* @package AlibabaCloud\Client
*/
class SDK
{
/**
* Invalid credential
*/
const INVALID_CREDENTIAL = 'SDK.InvalidCredential';
/**
* Client Not Found
*/
const CLIENT_NOT_FOUND = 'SDK.ClientNotFound';
/**
|
f0d6cde5
xu
vendor
|
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
|
* Invalid RegionId
*/
const INVALID_REGION_ID = 'SDK.InvalidRegionId';
/**
* Invalid Argument
*/
const INVALID_ARGUMENT = 'SDK.InvalidArgument';
/**
* Service Not Found
*/
const SERVICE_NOT_FOUND = 'SDK.ServiceNotFound';
/**
* Service Unknown Error
*/
const SERVICE_UNKNOWN_ERROR = 'SDK.UnknownError';
/**
* Response Empty
*/
const RESPONSE_EMPTY = 'The response is empty';
}
|