Proton Drive CLI API Documentation - v0.1.2
    Preparing search index...

    Interface CategorizedError

    Categorized error with metadata for error handling decisions

    interface CategorizedError {
        category: ErrorCategory;
        httpStatus?: number;
        message: string;
        protonCode?: number;
        recoverySuggestion?: string;
        retryable: boolean;
        userMessage: string;
    }
    Index

    Properties

    category: ErrorCategory
    httpStatus?: number
    message: string
    protonCode?: number
    recoverySuggestion?: string
    retryable: boolean
    userMessage: string