import { ResourceError } from "./ErrorResult.mjs"; import { Resource } from "../../Resource.mjs"; //#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.mts.map