add group element errors

This commit is contained in:
collin 2020-05-12 20:07:24 -07:00
parent 6efc834948
commit 162c0064b2
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,4 @@
#[derive(Debug, Error)]
pub enum GroupElementError {
}

View File

@ -18,6 +18,9 @@ pub use integer::*;
pub mod field_element;
pub use field_element::*;
pub mod group_element;
pub use group_element::*;
pub mod value;
pub use value::*;