export default class CommonError extends Error { constructor(message, redirect) { super(message) this.name = "CommonError" this.status = 500 } }