Packagecom.myflashlab.air.extensions.firebase.functions
Classpublic class FunctionsErrorCode
InheritanceFunctionsErrorCode Inheritance Object



Public Constants
 ConstantDefined By
  ABORTED : int = 10
[static] The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.
FunctionsErrorCode
  ALREADY_EXISTS : int = 6
[static] Some document that we attempted to create already exists.
FunctionsErrorCode
  CANCELLED : int = 1
[static] The operation was cancelled (typically by the caller).
FunctionsErrorCode
  DATA_LOSS : int = 15
[static] Unrecoverable data loss or corruption.
FunctionsErrorCode
  DEADLINE_EXCEEDED : int = 4
[static] Deadline expired before operation could complete.
FunctionsErrorCode
  FAILED_PRECONDITION : int = 9
[static] Operation was rejected because the system is not in a state required for the operation’s execution.
FunctionsErrorCode
  INTERNAL : int = 13
[static] Internal errors.
FunctionsErrorCode
  INVALID_ARGUMENT : int = 3
[static] Client specified an invalid argument.
FunctionsErrorCode
  NOT_FOUND : int = 5
[static] Some requested document was not found.
FunctionsErrorCode
  OK : int = 0
[static] The operation completed successfully.
FunctionsErrorCode
  OUT_OF_RANGE : int = 11
[static] Operation was attempted past the valid range.
FunctionsErrorCode
  PERMISSION_DENIED : int = 7
[static] The caller does not have permission to execute the specified operation.
FunctionsErrorCode
  RESOURCE_EXHAUSTED : int = 8
[static] Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space.
FunctionsErrorCode
  UNAUTHENTICATED : int = 16
[static] The request does not have valid authentication credentials for the operation.
FunctionsErrorCode
  UNAVAILABLE : int = 14
[static] The service is currently unavailable.
FunctionsErrorCode
  UNIMPLEMENTED : int = 12
[static] Operation is not implemented or not supported/enabled.
FunctionsErrorCode
  UNKNOWN : int = 2
[static] Unknown error or an error from a different error domain.
FunctionsErrorCode
Constant Detail
ABORTEDConstant
public static const ABORTED:int = 10

The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.

ALREADY_EXISTSConstant 
public static const ALREADY_EXISTS:int = 6

Some document that we attempted to create already exists.

CANCELLEDConstant 
public static const CANCELLED:int = 1

The operation was cancelled (typically by the caller).

DATA_LOSSConstant 
public static const DATA_LOSS:int = 15

Unrecoverable data loss or corruption.

DEADLINE_EXCEEDEDConstant 
public static const DEADLINE_EXCEEDED:int = 4

Deadline expired before operation could complete. For operations that change the state of the system, this error may be returned even if the operation has completed successfully. For example, a successful response from a server could have been delayed long enough for the deadline to expire.

FAILED_PRECONDITIONConstant 
public static const FAILED_PRECONDITION:int = 9

Operation was rejected because the system is not in a state required for the operation’s execution.

INTERNALConstant 
public static const INTERNAL:int = 13

Internal errors. Means some invariant expected by underlying system has been broken. If you see one of these errors, something is very broken.

INVALID_ARGUMENTConstant 
public static const INVALID_ARGUMENT:int = 3

Client specified an invalid argument. Note that this differs from FailedPrecondition. InvalidArgument indicates arguments that are problematic regardless of the state of the system (e.g., an invalid field name).

NOT_FOUNDConstant 
public static const NOT_FOUND:int = 5

Some requested document was not found.

OKConstant 
public static const OK:int = 0

The operation completed successfully.

OUT_OF_RANGEConstant 
public static const OUT_OF_RANGE:int = 11

Operation was attempted past the valid range.

PERMISSION_DENIEDConstant 
public static const PERMISSION_DENIED:int = 7

The caller does not have permission to execute the specified operation.

RESOURCE_EXHAUSTEDConstant 
public static const RESOURCE_EXHAUSTED:int = 8

Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space.

UNAUTHENTICATEDConstant 
public static const UNAUTHENTICATED:int = 16

The request does not have valid authentication credentials for the operation.

UNAVAILABLEConstant 
public static const UNAVAILABLE:int = 14

The service is currently unavailable. This is a most likely a transient condition and may be corrected by retrying with a backoff.

UNIMPLEMENTEDConstant 
public static const UNIMPLEMENTED:int = 12

Operation is not implemented or not supported/enabled.

UNKNOWNConstant 
public static const UNKNOWN:int = 2

Unknown error or an error from a different error domain.