(msg)
| 3 | var util = require('util') |
| 4 | |
| 5 | function ProxyquireError (msg) { |
| 6 | this.name = 'ProxyquireError' |
| 7 | Error.captureStackTrace(this, ProxyquireError) |
| 8 | this.message = msg || 'An error occurred inside proxyquire.' |
| 9 | } |
| 10 | |
| 11 | util.inherits(ProxyquireError, Error) |
| 12 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…