redjubjub/src/error.rs

10 lines
239 B
Rust
Raw Normal View History

2019-12-02 21:36:47 -08:00
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,
}