Spaces:
Running
Running
File size: 200 Bytes
cd6720a | 1 2 3 4 5 6 7 8 | export class InterceptorError extends Error {
constructor(message?: string) {
super(message)
this.name = 'InterceptorError'
Object.setPrototypeOf(this, InterceptorError.prototype)
}
}
|