interface IErrorData {
    code?: string;
    httpStatusCode: number;
    message: string;
}

Properties

code?: string
httpStatusCode: number
message: string