Reintroduce error impl

This commit is contained in:
Ryan Levick 2020-09-09 15:43:18 +02:00
parent d4b93b6895
commit 5a2e36df8c

View file

@ -34,3 +34,9 @@ pub enum ZipError {
#[error("invalid password for file in archive")]
InvalidPassword,
}
impl From<ZipError> for io::Error {
fn from(err: ZipError) -> io::Error {
io::Error::new(io::ErrorKind::Other, err)
}
}