UNPKG

nodevk-ts

Version:

Simple Node.js module that allows you to interact with the VKontakte API.

9 lines (8 loc) 231 B
export default class VKAPIException extends Error { constructor(json) { super(json.error_msg); this.source = json; this.code = json.error_code; this.params = json.request_params; } }