##// END OF EJS Templates
wip migrating on new typescript build plugin
wip migrating on new typescript build plugin

File last commit:

r152:8bee6a6d5f46 v1.4.0-rc10 default
r174:b00d3153045c default
Show More
ConfigError.ts
14 lines | 227 B | video/mp2t | TypeScriptLexer
/ src / main / ts / di / ConfigError.ts
cin
fixed bug in applying a lifetime while processing the json configuration...
r152 export class ConfigError {
cin
working on IoC configuration
r114 inner?: {};
cin
changed the project structure
r49
cin
fixed bug in applying a lifetime while processing the json configuration...
r152 message: string;
cin
working on IoC configuration
r114 path?: string;
cin
changed the project structure
r49
cin
working on IoC configuration
r114 configName?: string;
cin
changed the project structure
r49
cin
working on IoC configuration
r114 constructor(message: string, inner?: {}) {
cin
fixed bug in applying a lifetime while processing the json configuration...
r152 this.message = message;
cin
changed the project structure
r49 this.inner = inner;
}
}