export declare class HttpError extends Error {
  constructor(public status: number, message: string) {
    super(message)
    this.name = 'Server Error!'
  }
}