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