about summary refs log tree commit diff
path: root/finito-postgres/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'finito-postgres/src/error.rs')
-rw-r--r--finito-postgres/src/error.rs8
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 }