1 2 3 4 5 6 7 8
// Copyright 2024 StarfleetAI // SPDX-License-Identifier: Apache-2.0 #[derive(Debug, thiserror::Error)] pub enum Error { #[error("validation error: {0}")] ValidationError(String), }