UNPKG

117 BJavaScriptView Raw
1module.exports = class PoiError extends Error {
2 constructor(msg) {
3 super(msg)
4 this.name = 'PoiError'
5 }
6}