vk-io
Version:
Modern VK API SDK for Node.js
17 lines (16 loc) • 363 B
TypeScript
import { APIError } from './api';
export interface IExecuteErrorOptions {
error_code: number;
error_msg: string;
method: string;
}
export declare class ExecuteError extends APIError {
/**
* The method in which the error occurred
*/
method: string;
/**
* Constructor
*/
constructor(options: IExecuteErrorOptions);
}