15 lines
347 B
Lua
15 lines
347 B
Lua
|
-- auto export form enum
|
||
|
-- Automatic generation of code, forbid to edit or delete
|
||
|
XRpcExceptionCode = {
|
||
|
Success = 0,
|
||
|
DecodeError = 1,
|
||
|
ServerInternalError = 2,
|
||
|
RequestOutOfLimit = 3,
|
||
|
RpcTimeout = 4,
|
||
|
InvalidRequest = 5,
|
||
|
InvalidArgument = 6,
|
||
|
FeaturesNotOpen = 7,
|
||
|
RequestBlocked = 8,
|
||
|
ServiceUnavailable = 9,
|
||
|
}
|