ParseExceptionErrorCode EnumerationParse
Error codes that may be delivered in response to requests to Parse.

Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax

public enum ErrorCode
Members

  Member nameValueDescription
OtherCause-1 Error code indicating that an unknown error or an error unrelated to Parse occurred.
InternalServerError1 Error code indicating that something has gone wrong with the server. If you get this error code, it is Parse's fault. Please report the bug to https://parse.com/help.
ConnectionFailed100 Error code indicating the connection to the Parse servers failed.
ObjectNotFound101 Error code indicating the specified object doesn't exist.
InvalidQuery102 Error code indicating you tried to query with a datatype that doesn't support it, like exact matching an array or object.
InvalidClassName103 Error code indicating a missing or invalid classname. Classnames are case-sensitive. They must start with a letter, and a-zA-Z0-9_ are the only valid characters.
MissingObjectId104 Error code indicating an unspecified object id.
InvalidKeyName105 Error code indicating an invalid key name. Keys are case-sensitive. They must start with a letter, and a-zA-Z0-9_ are the only valid characters.
InvalidPointer106 Error code indicating a malformed pointer. You should not see this unless you have been mucking about changing internal Parse code.
InvalidJSON107 Error code indicating that badly formed JSON was received upstream. This either indicates you have done something unusual with modifying how things encode to JSON, or the network is failing badly.
CommandUnavailable108 Error code indicating that the feature you tried to access is only available internally for testing purposes.
NotInitialized109 You must call Parse.initialize before using the Parse library.
IncorrectType111 Error code indicating that a field was set to an inconsistent type.
InvalidChannelName112 Error code indicating an 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.
PushMisconfigured115 Error code indicating that push is misconfigured.
ObjectTooLarge116 Error code indicating that the object is too large.
OperationForbidden119 Error code indicating that the operation isn't allowed for clients.
CacheMiss120 Error code indicating the result was not found in the cache.
InvalidNestedKey121 Error code indicating that an invalid key was used in a nested JSONObject.
InvalidFileName122 Error code indicating that an invalid filename was used for ParseFile. A valid file name contains only a-zA-Z0-9_. characters and is between 1 and 128 characters.
InvalidACL123 Error code indicating an invalid ACL was provided.
Timeout124 Error code indicating that the request timed out on the server. Typically this indicates that the request is too expensive to run.
InvalidEmailAddress125 Error code indicating that the email address was invalid.
DuplicateValue137 Error code indicating that a unique field was given a value that is already taken.
InvalidRoleName139 Error code indicating that a role's name is invalid.
ExceededQuota140 Error code indicating that an application quota was exceeded. Upgrade to resolve.
ScriptFailed141 Error code indicating that a Cloud Code script failed.
ValidationFailed142 Error code indicating that a Cloud Code validation failed.
FileDeleteFailed153 Error code indicating that deleting a file failed.
RequestLimitExceeded155 Error code indicating that the application has exceeded its request limit.
InvalidEventName160 Error code indicating that the provided event name is invalid.
UsernameMissing200 Error code indicating that the username is missing or empty.
PasswordMissing201 Error code indicating that the password is missing or empty.
UsernameTaken202 Error code indicating that the username has already been taken.
EmailTaken203 Error code indicating that the email has already been taken.
EmailMissing204 Error code indicating that the email is missing, but must be specified.
EmailNotFound205 Error code indicating that a user with the specified email was not found.
SessionMissing206 Error code indicating that a user object without a valid session could not be altered.
MustCreateUserThroughSignup207 Error code indicating that a user can only be created through signup.
AccountAlreadyLinked208 Error code indicating that an an account being linked is already linked to another user.
InvalidSessionToken209 Error code indicating that the current session token is invalid.
LinkedIdMissing250 Error code indicating that a user cannot be linked to an account because that account's id could not be found.
InvalidLinkedSession251 Error code indicating that a user with a linked (e.g. Facebook) account has an invalid session.
UnsupportedService252 Error code indicating that a service being linked (e.g. Facebook or Twitter) is unsupported.
See Also

Reference