2025SELab2-project-Dwengo/backend/src/exceptions/exception-with-http-state.ts
2025-03-30 12:54:22 +00:00

11 lines
243 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);
}
}