RunErrorOptions
Examples
import { RunErrorOptions } from "@intuned/sdk/runtime"
const options: RunErrorOptions = {
retryable: true,
status_code: 500,
error_code: 'SERVER_ERROR'
};
Properties
error_code?
Optional. A specific error code to identify the type of error.
retryable?
Optional. Indicates whether the error is retryable.
status_code?
Optional. The HTTP status code associated with the error.