Type Alias ServiceError

type ServiceError = {
    code?: string;
    detail?: string;
    meta?: Meta;
    title?: string;
}
Index

Properties

code?: string

Code is a unique identifier for this error class.

detail?: string

Detail is a human-readable explanation specific to this occurrence of the problem.

meta?: Meta
title?: string

Title is the name of this class of errors.