Error Handling
The AIBTC Cache uses a standardized approach to error handling across all services. This document explains the error structure, common error codes, and best practices for handling errors.
Error Response Structure
All error responses follow this format:
Fields
id: A unique identifier for this specific error instance. Useful for tracking in logs and debugging.
code: A standardized error code from the
ErrorCode
enum.message: A human-readable description of what went wrong.
details: Additional context-specific information about the error.
Common Error Codes
General Errors
INTERNAL_ERROR: An unexpected internal error occurred.
NOT_FOUND: The requested resource was not found.
INVALID_REQUEST: The request was malformed or invalid.
UNAUTHORIZED: The request lacks valid authentication.
METHOD_NOT_ALLOWED: The HTTP method is not allowed for this endpoint.
TIMEOUT: The operation timed out.
API Specific Errors
RATE_LIMIT_EXCEEDED: The API rate limit has been exceeded.
UPSTREAM_API_ERROR: An error occurred in an upstream API (e.g., Stacks API).
REQUEST_FAILED: The request to an external service failed.
Automatic Retry Behavior
The AIBTC Cache implements automatic retries for certain types of errors:
Retryable Errors
The following errors are automatically retried:
UPSTREAM_API_ERROR: When the Stacks API returns a 5xx error
TIMEOUT: When a request to the Stacks API times out
RATE_LIMIT_EXCEEDED: When rate limits are hit (with appropriate backoff)
Non-Retryable Errors
The following errors are NOT automatically retried:
4xx errors from upstream APIs (e.g., invalid contract address)
Validation errors (e.g., invalid arguments)
Authentication errors
Retry Strategy
The cache uses an exponential backoff strategy for retries:
Initial retry delay is configurable (default: 1000ms)
Each subsequent retry doubles the delay time
Maximum number of retries is configurable (default: 3)
For example, with default settings, retries would occur at approximately:
1st retry: 1 second after failure
2nd retry: 2 seconds after 1st retry
3rd retry: 4 seconds after 2nd retry
Retry Information in Responses
When an error occurs after all retries have been exhausted, the error response includes:
Validation Errors
VALIDATION_ERROR: General validation error.
INVALID_CONTRACT_ADDRESS: The contract address is invalid.
INVALID_FUNCTION: The function doesn't exist in the contract.
INVALID_ARGUMENTS: The arguments don't match what the function expects.
INVALID_NETWORK: The specified network is invalid.
INVALID_PARAMETER: A parameter provided to the API is invalid.
Cache Errors
CACHE_ERROR: An error occurred with the caching system.
CACHE_MISS: The requested item was not found in the cache.
Configuration Errors
CONFIG_ERROR: An error in the configuration.
MISSING_CONFIG: A required configuration value is missing.
Timeout Handling
The AIBTC Cache implements timeouts for all external API calls to prevent hanging requests:
Default Timeout Values
Stacks API Calls: 5000ms (5 seconds)
Contract Read-Only Calls: 5000ms (5 seconds)
Request Queue Processing: 5000ms (5 seconds)
These values are configurable in the application configuration.
Timeout Error Format
When a request times out, you'll receive an error response like:
Handling Timeouts in Client Code
When receiving a timeout error, clients should:
Consider if the operation is idempotent (can be safely retried)
Implement backoff before retrying (start with 1-2 seconds, increase with each retry)
Limit the number of retries (3-5 is typically sufficient)
Consider using a longer timeout for complex operations
Error Handling Best Practices
Client-Side Error Handling
Retry Strategies
For certain error types, implementing a retry strategy can improve reliability:
Error Logging
When handling errors, it's useful to log the error ID for later reference:
Common Error Scenarios and Solutions
INVALID_CONTRACT_ADDRESS
Typo in contract address
Double-check the contract address format and network prefix
INVALID_FUNCTION
Function name doesn't exist in contract
Verify the function name against the contract ABI
INVALID_ARGUMENTS
Wrong argument types or count
Check the contract ABI for the expected argument types
UPSTREAM_API_ERROR
Stacks API is down or returning errors
Implement retry logic with exponential backoff
RATE_LIMIT_EXCEEDED
Too many requests in a short period
Add rate limiting on your side or implement backoff
Last updated