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

    Interface UserFriendlyError

    User-friendly error message with recovery suggestions

    interface UserFriendlyError {
        userMessage: string;
        technicalDetails: string;
        recoverySuggestions: string[];
        severity: ErrorSeverity;
        category: ErrorCategory;
        isRetryable: boolean;
        documentationUrl?: string;
        estimatedResolutionTime?: string;
    }
    Index

    Properties

    userMessage: string

    Simple, non-technical error message for end users

    technicalDetails: string

    Detailed technical information for developers

    recoverySuggestions: string[]

    Step-by-step recovery suggestions

    severity: ErrorSeverity

    Error severity level

    category: ErrorCategory

    Error category

    isRetryable: boolean

    Whether the error is retryable

    documentationUrl?: string

    Link to relevant documentation

    estimatedResolutionTime?: string

    Estimated time to resolution