Files
asterinas/framework/jinux-frame/src/error.rs
2023-10-10 16:52:40 -05:00

11 lines
231 B
Rust

/// The error type which is returned from the APIs of this crate.
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
pub enum Error {
InvalidArgs,
NoMemory,
PageFault,
AccessDenied,
IoError,
NotEnoughResources,
}