diff options
Diffstat (limited to 'finito-postgres/src/error.rs')
-rw-r--r-- | finito-postgres/src/error.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/finito-postgres/src/error.rs b/finito-postgres/src/error.rs new file mode 100644 index 000000000000..ccbf0c107e1b --- /dev/null +++ b/finito-postgres/src/error.rs @@ -0,0 +1,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 } |