##// END OF EJS Templates
fixes, tests...
fixes, tests di/configuration now works

File last commit:

r44:7a410676c874 di-typescript
r44:7a410676c874 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;
}
}