screencapturekit/error.rs
1//! Error types for `ScreenCaptureKit` operations
2//!
3//! This module re-exports error types from [`crate::utils::error`].
4//!
5//! # Examples
6//!
7//! ```
8//! use screencapturekit::error::{SCError, SCResult};
9//!
10//! fn example() -> SCResult<()> {
11//! // Function that can fail
12//! Ok(())
13//! }
14//! ```
15
16pub use crate::utils::error::{SCError, SCResult};