aboutsummaryrefslogtreecommitdiff
path: root/src/zip/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/zip/error.rs')
-rw-r--r--src/zip/error.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zip/error.rs b/src/zip/error.rs
index 9ec0956..a4b8c2b 100644
--- a/src/zip/error.rs
+++ b/src/zip/error.rs
@@ -20,6 +20,7 @@ pub enum ZipError {
20 InvalidFileComment, 20 InvalidFileComment,
21 21
22 FileNotFound, 22 FileNotFound,
23 IncorrectPassword,
23 PasswordIsNotSpecified, 24 PasswordIsNotSpecified,
24 CompressedDataIsUnseekable, 25 CompressedDataIsUnseekable,
25 EncryptedDataIsUnseekable, 26 EncryptedDataIsUnseekable,
@@ -66,6 +67,7 @@ impl Display for ZipError {
66 Self::InvalidFileComment => write!(f, "Invalid file comment"), 67 Self::InvalidFileComment => write!(f, "Invalid file comment"),
67 68
68 Self::FileNotFound => write!(f, "File not found"), 69 Self::FileNotFound => write!(f, "File not found"),
70 Self::IncorrectPassword => write!(f, "Incorrect password"),
69 Self::PasswordIsNotSpecified => write!(f, "Password is not specified"), 71 Self::PasswordIsNotSpecified => write!(f, "Password is not specified"),
70 Self::CompressedDataIsUnseekable => write!(f, "Compressed data is unseekable"), 72 Self::CompressedDataIsUnseekable => write!(f, "Compressed data is unseekable"),
71 Self::EncryptedDataIsUnseekable => write!(f, "Encrypted data is unseekable"), 73 Self::EncryptedDataIsUnseekable => write!(f, "Encrypted data is unseekable"),