UNPKG

bun-sqlite-orm

Version:

A lightweight TypeScript ORM for Bun runtime with Bun SQLite, featuring Active Record pattern and decorator-based entities

13 lines (10 loc) 405 B
import { BunSqliteOrmError } from './bun-sqlite-orm-error'; export class MigrationError extends BunSqliteOrmError { public readonly migrationName?: string; public readonly direction: 'up' | 'down'; constructor(message: string, direction: 'up' | 'down', migrationName?: string) { super(message); this.migrationName = migrationName; this.direction = direction; } }