##// END OF EJS Templates
fixed bug in applying a lifetime while processing the json configuration...
fixed bug in applying a lifetime while processing the json configuration fixed template-compile

File last commit:

r152:8bee6a6d5f46 v1.4.0-rc10 default
r152:8bee6a6d5f46 v1.4.0-rc10 default
Show More
ConfigError.ts
14 lines | 227 B | video/mp2t | TypeScriptLexer
export class ConfigError {
inner?: {};
message: string;
path?: string;
configName?: string;
constructor(message: string, inner?: {}) {
this.message = message;
this.inner = inner;
}
}