mod-manager/src/errors/minecraft_version_error.ts

7 lines
237 B
TypeScript

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