substreams 0.0.10-beta

Substreams SDK - A streaming data engine for The Graph - by StreamingFast
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Error implementation for Substreams.
//!
//! This crate implements Substreams error that you can
//! return in your Substreams handler
//!

use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[error("unexpected error: `{0}`")]
    Unexpected(String),
}