(message)
| 135 | function MYERR() { |
| 136 | class ParseError extends Error { |
| 137 | constructor(message) { |
| 138 | super(message); |
| 139 | this.name = "ParseError"; |
| 140 | } |
| 141 | } |
| 142 | class EventError extends Error { |
| 143 | constructor(message) { |
nothing calls this directly
no outgoing calls
no test coverage detected