API Exception DTO.

interface APIException {
    code: ExceptionCodes;
    message: string;
    ok: boolean;
}

Properties

Properties

The code of exception.

message: string

The message of exception.

ok: boolean

The status of successful completion of the request.