redjubjub/src/error.rs

10 lines
239 B
Rust

use thiserror::Error;
/// An error related to RedJubJub signatures.
#[derive(Error, Debug)]
pub enum Error {
/// This is a stub variant to check that thiserror derive works.
#[error("Stub error-- remove this.")]
StubError,
}