##// END OF EJS Templates
Added tag v1.2.0-rc for changeset 43a2828f8abe
Added tag v1.2.0-rc for changeset 43a2828f8abe

File last commit:

r49:1a91da7b15f7 di-typescript
r52:4428a3305955 di-typescript
Show More
ConfigError.ts
12 lines | 200 B | video/mp2t | TypeScriptLexer
/ src / main / ts / di / ConfigError.ts
cin
changed the project structure
r49 export class ConfigError extends Error {
inner;
path: string;
configName: string;
constructor(message: string, inner?) {
super(message);
this.inner = inner;
}
}