(msg, code)
| 11233 | |
| 11234 | class ArgError extends Error { |
| 11235 | constructor(msg, code) { |
| 11236 | super(msg); |
| 11237 | this.name = 'ArgError'; |
| 11238 | this.code = code; |
| 11239 | |
| 11240 | Object.setPrototypeOf(this, ArgError.prototype); |
| 11241 | } |
| 11242 | } |
| 11243 | |
| 11244 | function arg( |
nothing calls this directly
no outgoing calls
no test coverage detected