UNPKG

118 BJavaScriptView Raw
1module.exports = class SherryError extends Error {
2 constructor(msg) {
3 super(msg)
4 this.__sherry = true
5 }
6}