(message)
| 338 | // Arrange |
| 339 | class OperationalError extends Error { |
| 340 | constructor(message) { |
| 341 | super(message); |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | const err = new OperationalError('Something bad happened.'); |
nothing calls this directly
no outgoing calls
no test coverage detected