codeql-action/node_modules/@mswjs/interceptors/src/InterceptorError.ts
2025-01-27 17:21:38 +00:00

7 lines
200 B
TypeScript

export class InterceptorError extends Error {
constructor(message?: string) {
super(message)
this.name = 'InterceptorError'
Object.setPrototypeOf(this, InterceptorError.prototype)
}
}