RunErrorOptions

Examples

import { RunErrorOptions } from "@intuned/sdk/runtime"

const options: RunErrorOptions = {
  retryable: true,
  status_code: 500,
  error_code: 'SERVER_ERROR'
};

Properties

error_code?

optional error_code: string;

Optional. A specific error code to identify the type of error.


retryable?

optional retryable: boolean;

Optional. Indicates whether the error is retryable.


status_code?

optional status_code: number;

Optional. The HTTP status code associated with the error.