mirror of
https://git.bits.team/Bits/mod-manager.git
synced 2025-04-04 15:08:36 -04:00
7 lines
237 B
TypeScript
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);
|
|
}
|
|
} |