diff --git a/src/error.rs b/src/error.rs new file mode 100644 index 00000000..ab2ec363 --- /dev/null +++ b/src/error.rs @@ -0,0 +1,14 @@ +use std::error::Error; + +struct ApplicationError { + str: String +} + +impl Error for ApplicationError { + + fn description(&self) -> &str { + } + + fn cause(&self) -> Option<&Error> { + } +}