mirror of
https://github.com/github/codeql-action.git
synced 2026-04-09 21:52:47 +00:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
export class InterceptorError extends Error {
|
|
constructor(message?: string) {
|
|
super(message)
|
|
this.name = 'InterceptorError'
|
|
Object.setPrototypeOf(this, InterceptorError.prototype)
|
|
}
|
|
}
|