ErrorDto

Represents errors or warnings with necessary information about it

interface ErrorDto {
    code: number;
    reason: string;
    data?: object;
}

Last updated