refactor(error): export url::ParseError in hyper's error module

Closes #914
This commit is contained in:
Garrett Squire
2016-09-22 15:39:02 -07:00
parent bed4815d69
commit 3636a3e855

View File

@@ -25,6 +25,7 @@ use self::Error::{
Utf8
};
pub use url::ParseError;
/// Result type often returned from methods that can have hyper `Error`s.
pub type Result<T> = ::std::result::Result<T, Error>;