(message: string)
| 1 | export class SyntaxError extends Error { |
| 2 | constructor(message: string) { |
| 3 | super(message); |
| 4 | this.name = 'SyntaxError'; |
| 5 | } |
| 6 | } |
| 7 | |
| 8 | export class ConnectFunctionUnavailableError extends SyntaxError { |
nothing calls this directly
no outgoing calls
no test coverage detected