src/http/error/http.bindings.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IHttpError } from "./http.error";

export function ThrowHttp(message: string, code: number) {
    return new IHttpError(message, code);
}