wallet-core/node_modules/ava/lib/ava-error.js
2017-05-28 00:40:43 +02:00

11 lines
147 B
JavaScript

'use strict';
class AvaError extends Error {
constructor(message) {
super(message);
this.name = 'AvaError';
}
}
module.exports = AvaError;