* Numeric codes indicating the type of error that occurred on the * service. * * UNKNOWN * No information available about the error * BAD_DATA_FORMAT * The format of the request data was incorrect * PERMISSION_DENIED * Not permitted to perform action * INTERNAL_ERROR * Unexpected problem with
| 56 | * </dl> |
| 57 | */ |
| 58 | struct EDAMErrorCode { |
| 59 | enum type { |
| 60 | UNKNOWN = 1, |
| 61 | BAD_DATA_FORMAT = 2, |
| 62 | PERMISSION_DENIED = 3, |
| 63 | INTERNAL_ERROR = 4, |
| 64 | DATA_REQUIRED = 5, |
| 65 | LIMIT_REACHED = 6, |
| 66 | QUOTA_REACHED = 7, |
| 67 | INVALID_AUTH = 8, |
| 68 | AUTH_EXPIRED = 9, |
| 69 | DATA_CONFLICT = 10, |
| 70 | ENML_VALIDATION = 11, |
| 71 | SHARD_UNAVAILABLE = 12, |
| 72 | LEN_TOO_SHORT = 13, |
| 73 | LEN_TOO_LONG = 14, |
| 74 | TOO_FEW = 15, |
| 75 | TOO_MANY = 16, |
| 76 | UNSUPPORTED_OPERATION = 17, |
| 77 | TAKEN_DOWN = 18, |
| 78 | RATE_LIMIT_REACHED = 19 |
| 79 | }; |
| 80 | }; |
| 81 | |
| 82 | |
| 83 |
nothing calls this directly
no outgoing calls
no test coverage detected