@nydelic/toolbox
Version:
A collection of hooks, components, and other helpful tools.
10 lines • 376 B
TypeScript
declare class HttpRequestError extends Error {
shortCode: string;
eventId: number;
statusCode: number;
message: string;
constructor(shortCode: string, statusCode?: number, message?: string, options?: ErrorOptions);
constructor(shortCode: string, options?: ErrorOptions);
}
export default HttpRequestError;
//# sourceMappingURL=HttpRequestError.d.ts.map