Commit 4dba66d

HPCesia <me@hpcesia.com>
2025-02-09 14:39:21
refactor: remove unused type
1 parent e8ff63c
Changed files (1)
src
src/types/Errors.ts
@@ -1,9 +0,0 @@
-import { AstroError } from 'astro/errors';
-
-export class AstroParameterConflictError extends AstroError {
-  constructor(...params: string[]) {
-    const message = `The following parameters are in conflict: ${params.join(', ')}. Please ensure that only one of these parameters is provided.`;
-    super(message);
-    this.name = 'ParameterConflictError';
-  }
-}