1 2 3 4 5 6 7 8 9 10
'use strict'; class AvaError extends Error { constructor(message) { super(message); this.name = 'AvaError'; } } module.exports = AvaError;