//! Error-handling for this library.
use error;
use result;
/// Our library's error class. We just use a generic error type for
/// everything; it works fine for our needs.
pub type Error = ;
/// Our library's result type.
pub type Result<T> = Result;
/// Create a new error from something that can be turned into a string.