(message: string, filePath: string, defaultConfig: unknown)
| 41 | defaultConfig: unknown |
| 42 | |
| 43 | constructor(message: string, filePath: string, defaultConfig: unknown) { |
| 44 | super(message) |
| 45 | this.name = 'ConfigParseError' |
| 46 | this.filePath = filePath |
| 47 | this.defaultConfig = defaultConfig |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | export class ShellError extends Error { |
nothing calls this directly
no outgoing calls
no test coverage detected