Files
bili-sync/crates/bili_sync/src/api/error.rs

8 lines
136 B
Rust

use thiserror::Error;
#[derive(Error, Debug)]
pub enum InnerApiError {
#[error("Primary key not found: {0}")]
NotFound(i32),
}