You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*! @abstract 1: Internal server error. No information available. */
47
-
externNSIntegerconstkLCErrorInternalServer;
48
-
/*! @abstract 100: The connection to the LeanCloud servers failed. */
49
-
externNSIntegerconstkLCErrorConnectionFailed;
50
-
/*! @abstract 101: Object doesn't exist, or has an incorrect password. */
51
-
externNSIntegerconstkLCErrorObjectNotFound;
52
-
/*! @abstract 102: You tried to find values matching a datatype that doesn't support exact database matching, like an array or a dictionary. */
53
-
externNSIntegerconstkLCErrorInvalidQuery;
54
-
/*! @abstract 103: Missing or invalid classname. Classnames are case-sensitive. They must start with a letter, and a-zA-Z0-9_ are the only valid characters. */
55
-
externNSIntegerconstkLCErrorInvalidClassName;
56
-
/*! @abstract 104: Missing object id. */
57
-
externNSIntegerconstkLCErrorMissingObjectId;
58
-
/*! @abstract 105: Invalid key name. Keys are case-sensitive. They must start with a letter, and a-zA-Z0-9_ are the only valid characters. */
59
-
externNSIntegerconstkLCErrorInvalidKeyName;
60
-
/*! @abstract 106: Malformed pointer. Pointers must be arrays of a classname and an object id. */
61
-
externNSIntegerconstkLCErrorInvalidPointer;
62
-
/*! @abstract 107: Malformed json object. A json dictionary is expected. */
63
-
externNSIntegerconstkLCErrorInvalidJSON;
64
-
/*! @abstract 108: Tried to access a feature only available internally. */
65
-
externNSIntegerconstkLCErrorCommandUnavailable;
66
-
/*! @abstract 111: Field set to incorrect type. */
67
-
externNSIntegerconstkLCErrorIncorrectType;
68
-
/*! @abstract 112: Invalid channel name. A channel name is either an empty string (the broadcast channel) or contains only a-zA-Z0-9_ characters and starts with a letter. */
69
-
externNSIntegerconstkLCErrorInvalidChannelName;
70
-
/*! @abstract 114: Invalid device token. */
71
-
externNSIntegerconstkLCErrorInvalidDeviceToken;
72
-
/*! @abstract 115: Push is misconfigured. See details to find out how. */
73
-
externNSIntegerconstkLCErrorPushMisconfigured;
74
-
/*! @abstract 116: The object is too large. */
75
-
externNSIntegerconstkLCErrorObjectTooLarge;
76
-
/*! @abstract 119: That operation isn't allowed for clients. */
77
-
externNSIntegerconstkLCErrorOperationForbidden;
78
-
/*! @abstract 120: The results were not found in the cache. */
79
-
externNSIntegerconstkLCErrorCacheMiss;
80
-
/*! @abstract 121: Keys in NSDictionary values may not include '$' or '.'. */
81
-
externNSIntegerconstkLCErrorInvalidNestedKey;
82
-
/*! @abstract 122: Invalid file name. A file name contains only a-zA-Z0-9_. characters and is between 1 and 36 characters. */
83
-
externNSIntegerconstkLCErrorInvalidFileName;
84
-
/*! @abstract 123: Invalid ACL. An ACL with an invalid format was saved. This should not happen if you use LCACL. */
85
-
externNSIntegerconstkLCErrorInvalidACL;
86
-
/*! @abstract 124: The request timed out on the server. Typically this indicates the request is too expensive. */
87
-
externNSIntegerconstkLCErrorTimeout;
88
-
/*! @abstract 125: The email address was invalid. */
89
-
externNSIntegerconstkLCErrorInvalidEmailAddress;
90
-
/*! @abstract 137: A unique field was given a value that is already taken. */
91
-
externNSIntegerconstkLCErrorDuplicateValue;
92
-
/*! @abstract 139: Role's name is invalid. */
93
-
externNSIntegerconstkLCErrorInvalidRoleName;
94
-
/*! @abstract 140: Exceeded an application quota. Upgrade to resolve. */
95
-
externNSIntegerconstkLCErrorExceededQuota;
96
-
/*! @abstract 141: Cloud Code script had an error. */
0 commit comments