import { ResourceError } from "./ErrorResult.cjs"; import { Resource } from "../../Resource.cjs"; //#region src/results/error/InvalidUriError.d.ts /** * An InvalidUriError is returned when a URI was provided that is not a valid * URI. */ declare class InvalidUriError extends ResourceError { readonly type: "invalidUriError"; constructor(resource: ResourceType, message?: string); } //#endregion export { InvalidUriError }; //# sourceMappingURL=InvalidUriError.d.cts.map