payrex-node
Version:
PayRex Node JS Library
13 lines (9 loc) • 299 B
JavaScript
const BaseError = require('./BaseError');
function AuthenticationInvalidError(response) {
return BaseError.call(this, response, 'AuthenticationInvalidError');
}
Object.setPrototypeOf(
AuthenticationInvalidError.prototype,
BaseError.prototype
);
module.exports = AuthenticationInvalidError;