import { APIError } from'./APIError.js';
exportclassDuplicateFieldNameextendsAPIError {
constructor(fieldName){
super(`A field with the name '${fieldName}' was found multiple times on the same level. Field names must be unique.`);
}
}
//# sourceMappingURL=DuplicateFieldName.js.map