// Copyright 2023 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
usethiserror::Error;/// Triggered when there is an issue parsing user input.
#[derive(Error, Debug)]#[non_exhaustive]pubenumError{#[error("Error parsing svg: {0}")]
Svg(#[from]usvg::Error),}