feat: add multi-dialect schema initialization
This commit is contained in:
13
src/core/errors.ts
Normal file
13
src/core/errors.ts
Normal 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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user