##// END OF EJS Templates
Fixed circular dependency safe<->Cancellation
Fixed circular dependency safe<->Cancellation

File last commit:

r114:475b8ce3e850 ioc ts support
r150:b16ed1178612 v1.4.0-rc7 default
Show More
ConfigError.ts
12 lines | 211 B | video/mp2t | TypeScriptLexer
export class ConfigError extends Error {
inner?: {};
path?: string;
configName?: string;
constructor(message: string, inner?: {}) {
super(message);
this.inner = inner;
}
}