1// Copyright (c) 2026 Joydev GmbH (joydev.com) 2// SPDX-License-Identifier: MIT 3 4#[derive(Debug, thiserror::Error)] 5pub enum JotError { 6 #[error(transparent)] 7 Joy(#[from] joy_core::error::JoyError), 8 9 #[error("{0}")] 10 Other(String), 11}