Represents a standardized error response.

interface ErrorResponse {
    code: number;
    message: string;
}

Properties

Properties

code: number

Numeric error code

message: string

Human-readable error message