mirror of
https://github.com/amtoaer/bili-sync.git
synced 2026-05-27 19:30:07 +08:00
10 lines
202 B
Rust
10 lines
202 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("Request too frequently")]
|
|
pub struct DownloadAbortError();
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("Process page error")]
|
|
pub struct ProcessPageError();
|