##// END OF EJS Templates
text/format refactoring
text/format refactoring

File last commit:

r49:1a91da7b15f7 di-typescript
r54:2fd5aee49888 di-typescript
Show More
ConfigError.ts
12 lines | 200 B | video/mp2t | TypeScriptLexer
export class ConfigError extends Error {
inner;
path: string;
configName: string;
constructor(message: string, inner?) {
super(message);
this.inner = inner;
}
}