export class HttpError extends Error {
constructor(message, status = 500) {
super(message)
this.status = status
}