Skip to content

Latest commit

 

History

History
21 lines (10 loc) · 624 Bytes

File metadata and controls

21 lines (10 loc) · 624 Bytes

ErrorCategory

Categories for batch processing errors. Used to classify errors for better observability, retry logic, and debugging. Helps distinguish between transient errors (worth retrying) and permanent errors.

Enum

  • DEPENDENCY (value: 'dependency')

  • AUTHENTICATION (value: 'authentication')

  • VALIDATION (value: 'validation')

  • RUNTIME (value: 'runtime')

  • NETWORK (value: 'network')

  • RESOURCE (value: 'resource')

[Back to Model list] [Back to API list] [Back to README]