export default class MinecraftVersionError extends Error { constructor(message: string | undefined) { super(message); this.name = this.constructor.name; Error.captureStackTrace(this, this.constructor); } }