feat: clean up the machine a bit

This commit is contained in:
rvcas
2022-07-03 16:38:55 -04:00
committed by Kasey White
parent de476c801b
commit 795d9ee028
5 changed files with 170 additions and 35 deletions

View File

@@ -0,0 +1,9 @@
use thiserror::Error;
use super::ExBudget;
#[derive(Error, Debug)]
pub enum Error {
#[error("Over budget mem: {} & cpu: {}", .0.mem, .0.cpu)]
OutOfExError(ExBudget),
}