UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

10 lines (9 loc) 285 B
import { ApiError } from "../../typings/apiError"; declare class ApiException implements Error { error: ApiError; statusCode: number; readonly message: string; readonly name: string; constructor(message: string, statusCode?: number); } export default ApiException;