UNPKG

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