##// END OF EJS Templates
Added childContainer service to container services, ServiceContaier is destroyable, fixed browser Uuid version
Added childContainer service to container services, ServiceContaier is destroyable, fixed browser Uuid version

File last commit:

r114:475b8ce3e850 ioc ts support
r146:f3f5c56d3b3e v1.4.0-rc5 default
Show More
ConfigError.ts
12 lines | 211 B | video/mp2t | TypeScriptLexer
/ src / main / ts / di / ConfigError.ts
cin
changed the project structure
r49 export class ConfigError extends Error {
cin
working on IoC configuration
r114 inner?: {};
cin
changed the project structure
r49
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
changed the project structure
r49 super(message);
this.inner = inner;
}
}