> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bedrock.cv/llms.txt
> Use this file to discover all available pages before exploring further.

# Errors

> Handle job failures and error codes.

If a job fails, the response includes an error object with a code and message.

```json theme={null}
{
  "job_id": "job_01JABCD123",
  "type": "change.detect",
  "status": "Failed",
  "error": {
    "code": "PROCESSING_ERROR",
    "message": "Unable to analyze overlay - source images missing"
  }
}
```

## Error Codes

| Error Code           | Description                                |
| -------------------- | ------------------------------------------ |
| `PROCESSING_ERROR`   | General processing failure                 |
| `RESOLUTION_TOO_LOW` | Image resolution insufficient for analysis |
| `UNSUPPORTED_FORMAT` | File format not supported                  |
| `TIMEOUT`            | Operation timed out                        |

Retry the job if the error is transient. Contact support if the error persists.
