UNPKG

mj-pkg

Version:

A Node.js library that abstracts away differences among popular marijuana POS providers.

11 lines (7 loc) 232 B
'use strict'; var InvalidCredentials = function(param) { this.name = 'Invalid credentials'; this.message = 'Invalid ' + param + ' param.'; }; InvalidCredentials.prototype = new Error; module.exports = InvalidCredentials;