UNPKG

mvom

Version:

Multivalue Object Mapper

10 lines (9 loc) 343 B
import BaseError from './BaseError'; interface ConnectionErrorConstructorOptions { message?: string; } /** Error thrown when an error occurs when attempting to connect to the db server */ declare class ConnectionError extends BaseError { constructor({ message, }?: ConnectionErrorConstructorOptions); } export default ConnectionError;