summaryrefslogtreecommitdiff
path: root/packages/db/src/utils.ts
diff options
context:
space:
mode:
authorGravatar Arsh <69170106+lilnasy@users.noreply.github.com> 2024-04-02 21:07:28 +0530
committerGravatar GitHub <noreply@github.com> 2024-04-02 11:37:28 -0400
commit713f99e849b26edb831ea6527b7103ad7a6b200f (patch)
treeb96955c7198ca1ff0f61a8e0d865b0c357efb048 /packages/db/src/utils.ts
parent51112ab3f1b134740e8307743bbb15cb0d8bdbb3 (diff)
downloadastro-713f99e849b26edb831ea6527b7103ad7a6b200f.tar.gz
astro-713f99e849b26edb831ea6527b7103ad7a6b200f.tar.zst
astro-713f99e849b26edb831ea6527b7103ad7a6b200f.zip
fix(db): isolate AstroDbError from core utils (#10646)
* fix(db): isolate AstroDbError from core utils * add changeset
Diffstat (limited to 'packages/db/src/utils.ts')
-rw-r--r--packages/db/src/utils.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/db/src/utils.ts b/packages/db/src/utils.ts
index 1e7b00b12..4e1a18685 100644
--- a/packages/db/src/utils.ts
+++ b/packages/db/src/utils.ts
@@ -1,8 +1,2 @@
-import { AstroError } from 'astro/errors';
-
export { defineDbIntegration } from './core/utils.js';
export { asDrizzleTable } from './runtime/index.js';
-
-export class AstroDbError extends AstroError {
- name = 'Astro DB Error';
-}