use thiserror::Error;
#[derive(Clone, Eq, PartialEq, Debug, Error)]
pub enum Error {
#[error("Not enough signature shares")]
NotEnoughShares,
#[error("Signature shares contain a duplicated index")]
DuplicateEntry,
#[error("The degree is too high for the coefficients to be indexed by usize.")]
DegreeTooHigh,
}
pub type Result<T> = ::std::result::Result<T, Error>;
#[cfg(test)]
mod tests {
use super::Error;
fn is_send_and_sync<T: Send + Sync>(_: T) {}
#[test]
fn errors_are_send_and_sync() {
is_send_and_sync(Error::NotEnoughShares);
}
}
#[derive(Clone, Eq, PartialEq, Debug, Error)]
pub enum FromBytesError {
#[error("Invalid representation.")]
Invalid,
}
pub type FromBytesResult<T> = ::std::result::Result<T, FromBytesError>;