UNPKG

@mikro-orm/core

Version:

TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.

12 lines (11 loc) 370 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExceptionConverter = void 0; const exceptions_1 = require("../exceptions"); class ExceptionConverter { /* istanbul ignore next */ convertException(exception) { return new exceptions_1.DriverException(exception); } } exports.ExceptionConverter = ExceptionConverter;