//! Errors for the `kona-std-fpvm` crate.
usethiserror::Error;/// An error that can occur when reading from or writing to a file descriptor.
#[derive(Error, Debug, PartialEq, Eq)]#[error("IO error (errno: {_0})")]pubstructIOError(pub i32);/// A [Result] type for the [IOError].
pubtypeIOResult<T>=Result<T, IOError>;