rename database-core -> database-common

This commit is contained in:
Nikita Sivukhin
2025-09-09 14:26:21 +04:00
parent 1c286193c0
commit f827731727
19 changed files with 1250 additions and 3310 deletions

View File

@@ -0,0 +1,13 @@
export class SqliteError extends Error {
name: string;
code: string;
rawCode: string;
constructor(message, code, rawCode) {
super(message);
this.name = 'SqliteError';
this.code = code;
this.rawCode = rawCode;
(Error as any).captureStackTrace(this, SqliteError);
}
}