export default class BodyError extends Error { constructor(message: string, cause?: string) { super(); this.name = "BodyError"; this.message = message; this.cause = cause; } }