Files
asterinas/framework/aster-frame/src/error.rs

14 lines
282 B
Rust

// SPDX-License-Identifier: MPL-2.0
/// 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,
Overflow,
}