mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-29 16:04:38 -04:00
7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
export class LoadScriptError extends Error {
|
|
constructor(scriptName: string, src: string, type: string) {
|
|
super(`failed to load ${scriptName} (${src}): ${type}`);
|
|
this.name = this.constructor.name;
|
|
}
|
|
}
|