Heroku AI SDK Provider - v0.4.3
    Preparing search index...

    Interface ErrorMetadata

    Comprehensive error metadata for each error type

    interface ErrorMetadata {
        type: HerokuErrorType;
        severity: ErrorSeverity;
        category: ErrorCategory;
        retryable: boolean;
        userMessage: string;
        technicalMessage: string;
        recoverySuggestions: string[];
        documentationUrl?: string;
    }
    Index

    Properties

    severity: ErrorSeverity
    category: ErrorCategory
    retryable: boolean
    userMessage: string
    technicalMessage: string
    recoverySuggestions: string[]
    documentationUrl?: string