Blame view

vendor/alibabacloud/client/src/SDK.php 958 Bytes
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';

    /**
0c34aba8   xu   更新阿里云短信接口
23
24
25
26
27
     * Host Not Found
     */
    const HOST_NOT_FOUND = 'SDK.HostNotFound';

    /**
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
53
54
55
56
57
     * Server Unreachable
     */
    const SERVER_UNREACHABLE = 'SDK.ServerUnreachable';

    /**
     * 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';
}