Interface MastoHttpErrorProps

interface MastoHttpErrorProps {
    additionalProperties?: Record<string, unknown>;
    description?: string;
    details?: MastoHttpErrorDetails;
    message: string;
    statusCode: number;
}

Properties

additionalProperties?: Record<string, unknown>
description?: string
message: string
statusCode: number