frontend/.pnpm-store/v3/files/99/c20bce9daaa11f80e0c308ef5cd9d46ade8dd86cf406ab7dd6ac77306695b33e3721955d31deb79bf1c56f599026aa129c205a1c5fcb8e9fd22ebebd4ce0bd

9 lines
236 B
Plaintext

/**
* Error subclass to use when an HTTP application error has occurred.
*/
export default class HTTPError extends Error {
code: string;
statusCode: number;
constructor(statusCode: number, message?: string | undefined);
}