| Package | com.myflashlab.air.extensions.firebase.functions |
| Class | public class FunctionsErrorCode |
| Inheritance | FunctionsErrorCode Object |
| Constant | Defined 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 | ||
| ABORTED | Constant |
public static const ABORTED:int = 10The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.
| ALREADY_EXISTS | Constant |
public static const ALREADY_EXISTS:int = 6Some document that we attempted to create already exists.
| CANCELLED | Constant |
public static const CANCELLED:int = 1The operation was cancelled (typically by the caller).
| DATA_LOSS | Constant |
public static const DATA_LOSS:int = 15Unrecoverable data loss or corruption.
| DEADLINE_EXCEEDED | Constant |
public static const DEADLINE_EXCEEDED:int = 4Deadline 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_PRECONDITION | Constant |
public static const FAILED_PRECONDITION:int = 9Operation was rejected because the system is not in a state required for the operation’s execution.
| INTERNAL | Constant |
public static const INTERNAL:int = 13Internal errors. Means some invariant expected by underlying system has been broken. If you see one of these errors, something is very broken.
| INVALID_ARGUMENT | Constant |
public static const INVALID_ARGUMENT:int = 3Client 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_FOUND | Constant |
public static const NOT_FOUND:int = 5Some requested document was not found.
| OK | Constant |
public static const OK:int = 0The operation completed successfully.
| OUT_OF_RANGE | Constant |
public static const OUT_OF_RANGE:int = 11Operation was attempted past the valid range.
| PERMISSION_DENIED | Constant |
public static const PERMISSION_DENIED:int = 7The caller does not have permission to execute the specified operation.
| RESOURCE_EXHAUSTED | Constant |
public static const RESOURCE_EXHAUSTED:int = 8Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space.
| UNAUTHENTICATED | Constant |
public static const UNAUTHENTICATED:int = 16The request does not have valid authentication credentials for the operation.
| UNAVAILABLE | Constant |
public static const UNAVAILABLE:int = 14The service is currently unavailable. This is a most likely a transient condition and may be corrected by retrying with a backoff.
| UNIMPLEMENTED | Constant |
public static const UNIMPLEMENTED:int = 12Operation is not implemented or not supported/enabled.
| UNKNOWN | Constant |
public static const UNKNOWN:int = 2Unknown error or an error from a different error domain.