(message: string, type: string, error_code = ExitCode.CommitlintErrorDefault)
| 13 | public error_code: ExitCode; |
| 14 | |
| 15 | constructor(message: string, type: string, error_code = ExitCode.CommitlintErrorDefault) { |
| 16 | super(message); |
| 17 | |
| 18 | this.type = type; |
| 19 | this.error_code = error_code; |
| 20 | |
| 21 | Object.setPrototypeOf(this, CliError.prototype); |
| 22 | } |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected