##// END OF EJS Templates
fixed object activation when a single argument passed to the constructor.
fixed object activation when a single argument passed to the constructor.

File last commit:

r44:7a410676c874 di-typescript
r46:747292a4f3ac di-typescript
Show More
ConfigError.ts
12 lines | 200 B | video/mp2t | TypeScriptLexer
export class ConfigError extends Error {
inner;
path: string;
configName: string;
constructor(message: string, inner?) {
super(message);
this.inner = inner;
}
}