UNPKG

@bitmartexchange/bitmart-node-sdk-api

Version:

BitMart Exchange official Nodejs client for the BitMart Cloud API.

13 lines (9 loc) 262 B
'use strict' const BitMartError = require('./error') class BitMartMissingKeyError extends BitMartError { constructor (message) { super(`api key missing: ${message}`) this.name = 'BitMartMissingKeyError' } } module.exports = BitMartMissingKeyError