smartguard/ts/classes.guarderror.ts

9 lines
182 B
TypeScript
Raw Normal View History

2024-08-25 16:03:37 +00:00
import * as plugins from './smartguard.plugins.js';
export class GuardError extends Error {
constructor(message: string) {
super(message);
this.name = 'GuardError';
}
}