UNPKG

mvom

Version:

Multivalue Object Mapper

11 lines (10 loc) 381 B
import type { AxiosError } from 'axios'; import BaseError from './BaseError'; interface MvisErrorConstructorOptions { message?: string; } /** Error thrown when an error occurs when communicating with the connection manager */ declare class MvisError extends BaseError { constructor(cause: AxiosError, { message }?: MvisErrorConstructorOptions); } export default MvisError;