UNPKG

247 BJavaScriptView Raw
1const m = function (code, message, buffer = null) {
2 this.code = code
3 this.message = message
4 this.buffer = buffer
5 this.stack = new Error().stack
6}
7m.prototype = Object.create(Error.prototype)
8m.prototype.constructor = m
9
10module.exports = m