##// END OF EJS Templates
Close ioc ts support branch
Close ioc ts support branch

File last commit:

r114:475b8ce3e850 ioc ts support
r137:7c11f56aa2ca ioc ts support
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;
}
}