mirror of
https://github.com/alfg/mp4-rust.git
synced 2024-12-23 04:26:27 +00:00
10 lines
174 B
Rust
10 lines
174 B
Rust
|
use thiserror::Error;
|
||
|
|
||
|
#[derive(Error, Debug)]
|
||
|
pub enum Error {
|
||
|
#[error("{0}")]
|
||
|
IoError(#[from] std::io::Error),
|
||
|
#[error("{0}")]
|
||
|
InvalidData(&'static str),
|
||
|
}
|