##// END OF EJS Templates
Added tag v1.4.0 for changeset 1a8a956a013f
Added tag v1.4.0 for changeset 1a8a956a013f

File last commit:

r152:8bee6a6d5f46 v1.4.0-rc10 default
r157:f563f4b24ce3 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;
}
}