Error Handling
This guide explains how to properly handle errors in your Handit.AI implementation.
Error Propagation
Handit.AI will propagate any errors thrown in your functions through the tracing system. This means:
If your function throws an error, it will be:
Captured by the tracing system
Included in the trace data
Propagated to the caller
You don't need to try/catch around Handit.AI functions:
The wrappers handle error propagation
Errors will be properly traced
No need for additional error handling
Examples
Node.js
Python
Best Practices
Error Handling
Let errors propagate naturally
Don't catch Handit.AI errors
Focus on handling your application's errors
Error Logging
Log errors at the appropriate level
Include relevant context
Don't duplicate error handling
Error Recovery
Implement recovery logic in your application
Handle retries if needed
Maintain application state
Common Pitfalls
Over-catching Errors
Don't catch errors unnecessarily
Let Handit.AI handle its own errors
Focus on your application's error handling
Error Transformation
Don't transform Handit.AI errors
Preserve error context
Let errors propagate naturally
Silent Failures
Don't silently catch errors
Ensure errors are properly logged
Maintain error visibility
Last updated