A class of exceptions thrown by Firebase Machine Learning
Nested Class Summary
@interface | FirebaseMLException.Code | The set of Firebase ML status codes. |
Constant Summary
int | ABORTED | The operation was aborted, typically due to a concurrency issue like transaction aborts, etc. |
int | ALREADY_EXISTS | Some resource that we attempted to create already exists. |
int | CANCELLED | The operation was cancelled (typically by the caller). |
int | DATA_LOSS | Unrecoverable data loss or corruption. |
int | DEADLINE_EXCEEDED | Deadline expired before operation could complete. |
int | FAILED_PRECONDITION | Operation was rejected because the system is not in a state required for the operation's execution. |
int | INTERNAL | Internal errors. |
int | INVALID_ARGUMENT | Client specified an invalid argument. |
int | MODEL_HASH_MISMATCH | The downloaded model's hash doesn't match the expected value. |
int | MODEL_INCOMPATIBLE_WITH_TFLITE | The downloaded model isn't compatible with the TFLite runtime. |
int | NOT_ENOUGH_SPACE | There is not enough space left on the device. |
int | NOT_FOUND | Some requested resource was not found. |
int | OK | The operation completed successfully. |
int | OUT_OF_RANGE | Operation was attempted past the valid range. |
int | PERMISSION_DENIED | The caller does not have permission to execute the specified operation. |
int | RESOURCE_EXHAUSTED | Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space. |
int | UNAUTHENTICATED | The request does not have valid authentication credentials for the operation. |
int | UNAVAILABLE | The service is currently unavailable. |
int | UNIMPLEMENTED | Operation is not implemented or not supported/enabled. |
int | UNKNOWN | Unknown error or an error from a different error domain. |
Public Method Summary
int |
getCode()
Gets the error code for the Firebase ML operation that failed.
|
Inherited Method Summary
Constants
public static final int ABORTED
The operation was aborted, typically due to a concurrency issue like transaction aborts, etc.
public static final int ALREADY_EXISTS
Some resource that we attempted to create already exists.
public static final int CANCELLED
The operation was cancelled (typically by the caller).
public static final int DATA_LOSS
Unrecoverable data loss or corruption.
public static final int DEADLINE_EXCEEDED
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.
public static final int FAILED_PRECONDITION
Operation was rejected because the system is not in a state required for the operation's execution.
public static final int INTERNAL
Internal errors. Means some invariants expected by underlying system has been broken. If you see one of these errors, something is very broken.
public static final int INVALID_ARGUMENT
Client specified an invalid argument. Note that this differs from FAILED_PRECONDITION. INVALID_ARGUMENT indicates arguments that are problematic regardless of the state of the system (e.g., an invalid field name).
public static final int MODEL_HASH_MISMATCH
The downloaded model's hash doesn't match the expected value.
public static final int MODEL_INCOMPATIBLE_WITH_TFLITE
The downloaded model isn't compatible with the TFLite runtime.
public static final int NOT_ENOUGH_SPACE
There is not enough space left on the device.
public static final int NOT_FOUND
Some requested resource was not found.
public static final int OK
The operation completed successfully. FirebaseMLException will never have a status of OK.
public static final int OUT_OF_RANGE
Operation was attempted past the valid range.
public static final int PERMISSION_DENIED
The caller does not have permission to execute the specified operation.
public static final int RESOURCE_EXHAUSTED
Some resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space.
public static final int UNAUTHENTICATED
The request does not have valid authentication credentials for the operation.
public static final int UNAVAILABLE
The service is currently unavailable. This is a most likely a transient condition and may be corrected by retrying with a backoff.
In ML Kit, this error is mostly about the models being not available yet.
public static final int UNIMPLEMENTED
Operation is not implemented or not supported/enabled.
public static final int UNKNOWN
Unknown error or an error from a different error domain.
Public Methods
public int getCode ()
Gets the error code for the Firebase ML operation that failed.