@bitmartexchange/bitmart-node-sdk-api
Version:
BitMart Exchange official Nodejs client for the BitMart Cloud API.
13 lines (9 loc) • 354 B
JavaScript
const BitMartError = require('./error')
class BitMartMissingParameterError extends BitMartError {
constructor (paramNames) {
super(`One or more of required parameters is missing: ${paramNames ? paramNames.slice().join(', ') : ''} `)
this.name = 'BitMartMissingParameterError'
}
}
module.exports = BitMartMissingParameterError