##// END OF EJS Templates
working on multi-platform support
working on multi-platform support

File last commit:

r44:7a410676c874 di-typescript
r48:2ef1241803ee di-typescript
Show More
ConfigError.ts
12 lines | 200 B | video/mp2t | TypeScriptLexer
/ src / ts / di / ConfigError.ts
cin
fixes, tests...
r44 export class ConfigError extends Error {
inner;
path: string;
configName: string;
constructor(message: string, inner?) {
super(message);
this.inner = inner;
}
}