fabryk_core/
error.rs

1//! Error types for fabryk-core
2
3use thiserror::Error;
4
5/// Result type alias for fabryk-core operations
6pub type Result<T> = std::result::Result<T, Error>;
7
8/// Errors that can occur in fabryk-core
9#[derive(Error, Debug)]
10#[non_exhaustive]
11pub enum Error {
12    /// Placeholder error variant
13    #[error("Not yet implemented: {0}")]
14    NotImplemented(&'static str),
15}