(message)
| 354 | // Arrange |
| 355 | class OperationalError extends Error { |
| 356 | constructor(message) { |
| 357 | super(message); |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | const err = new OperationalError('Something bad happened.'); |
nothing calls this directly
no outgoing calls
no test coverage detected