mod-manager/src/errors/mod_not_found_error.ts
2022-08-03 15:00:36 +01:00

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);
}
}