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'; } }