UNPKG

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