Most of the refactor. Need to switch machines.

This commit is contained in:
Olivia Brooks
2026-02-15 09:36:04 -05:00
parent dda863e512
commit e41d4bcd76
61 changed files with 3390 additions and 618 deletions

19
crates/java/src/error.rs Normal file
View File

@@ -0,0 +1,19 @@
use derive_more::{Display, From};
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Debug, From, Display)]
pub enum Error {
EmptyStdout,
#[from]
Io(io::Error),
NthOutOfBounds,
#[from]
Semver(semver::Error),
#[from]
StdIo(std::io::Error),
}