about summary refs log tree commit diff
path: root/finito-postgres/src/error.rs
blob: ccbf0c107e1b55ac600d7bfd2fc18ce55b6cb014 (plain) (blame)
1
2
3
4
5
6
7
8
//! This module defines error types and conversions for issue that can
//! occur while dealing with persisted state machines.

use std::result;

pub type Result<T> = result::Result<T, Error>;

pub enum Error { SomeError }