Commit 4dba66d
Changed files (1)
src
types
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';
- }
-}