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) 255 B
class TimeoutError extends Error { constructor() { super('Connection timeout. Please check your internet connection or wait for a seconds.'); this.status = 'failed'; this.code = 408; } } module.exports = { TimeoutError, };