mirror of
https://git.bits.team/Bits/mod-manager.git
synced 2025-04-04 15:08:36 -04:00
7 lines
220 B
TypeScript
7 lines
220 B
TypeScript
export default class ModNotFoundError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = this.constructor.name;
|
|
Error.captureStackTrace(this, this.constructor);
|
|
}
|
|
} |