constructor()

in src/app/api/models/httpError.ts [11:16]


    constructor(httpCode: number, httpMessage?: string) {
        super(ERROR_TYPES.HTTP);
        this.name = this.message;
        this.httpCode = httpCode;
        this.httpMessage = httpMessage ? httpMessage : '';
    }