Error Handling
The globalMOO API and SDKs provide structured error handling and validation across all operations.
Error Types
InvalidArgumentException
Thrown when invalid arguments are provided to SDK methods
Common causes: invalid array lengths, wrong data types, missing required fields
InvalidRequestException
Thrown when the API rejects a request
Includes HTTP status code and detailed error messages
Contains validation errors for specific fields
InvalidResponseException
Thrown when response data cannot be properly decoded
Indicates potential API version mismatch or malformed response
NetworkConnectionException
Thrown when network communication fails
Includes retry count and timing information
Error Response Format
API error responses follow this structure:
Validation Rules
Input Arrays
Array lengths must match specified counts
All numeric values must be valid integers or floats
Arrays must not be null or undefined
Numeric Values
Input minimums must be less than maximums
L1 norm values must be non-negative
Integer inputs must be whole numbers
Types & Categories
Input types must match enumerated values
Category arrays required for categorical inputs
Boolean values must be 0 or 1
Timestamps
All timestamps must be valid ISO 8601 format
Future timestamps not allowed
Optional timestamps can be null
SDK Error Handling Example
Best Practices
Always use try-catch blocks around API calls
Check array lengths before making requests
Validate input types match requirements
Handle network errors with retries
Log detailed error information
Use proper type hints/contracts
Validate all input data before sending
Last updated