This commit is contained in:
2025-12-20 17:23:40 +01:00
parent b5d3417572
commit 78c4cdc684
12 changed files with 135 additions and 123 deletions

4
nova_error/Cargo.toml Normal file
View File

@@ -0,0 +1,4 @@
[package]
name = "nova_error"
version = "0.1.0"
edition = "2024"

11
nova_error/src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
#![no_std]
use core::fmt::Debug;
use core::prelude::rust_2024::derive;
#[derive(Debug)]
pub enum NovaError {
Mailbox,
HeapFull,
EmptyHeapSegmentNotAllowed,
}