9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
/**
|
|
* Exceptions which are associated with a HTTP error code.
|
|
*/
|
|
export abstract class ExceptionWithHttpState extends Error {
|
|
constructor(public status: number, public error: string) {
|
|
super(error);
|
|
}
|
|
}
|
|
|