##// END OF EJS Templates
Added CancelledError, fixed lint warnings
Added CancelledError, fixed lint warnings

File last commit:

r152:8bee6a6d5f46 v1.4.0-rc10 default
r172:3969a8fb8049 release v1.4.6 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;
}
}