feat: add multi-dialect schema initialization

This commit is contained in:
2026-05-11 10:45:39 +09:00
parent fb140d7a50
commit 2f8712e1df
6 changed files with 249 additions and 0 deletions

13
src/core/errors.ts Normal file
View File

@@ -0,0 +1,13 @@
export class IdentityDBError extends Error {
constructor(message: string) {
super(message);
this.name = 'IdentityDBError';
}
}
export class IdentityDBConfigurationError extends IdentityDBError {
constructor(message: string) {
super(message);
this.name = 'IdentityDBConfigurationError';
}
}