UNPKG

@iak-id/iak-api-server-js

Version:

Node.js-based SDK (server-side-only) to easily help integrating IAK API Services with your app.

13 lines (10 loc) 272 B
class InvalidParameterValueError extends Error { constructor(message = 'Argument value is not fit with the respective value.') { super(message); this.status = 'failed'; this.code = 400; } } module.exports = { InvalidParameterValueError, };