pub type JResult<T, E = JException> = Result<T, E>;
enum JResult<T, E = JException> { Ok(T), Err(E), }
Contains the success value
Contains the error value