diff options
| author | 2024-01-22 18:54:06 +0800 | |
|---|---|---|
| committer | 2024-01-22 18:54:06 +0800 | |
| commit | 2826819bb7086f68bcb815526278572ae6056fe9 (patch) | |
| tree | 7291c8dd80b2c4dfb0cf4d7d4083485a4506f7d3 | |
| parent | 4945a788bedafefc7fa4b733504c2f592ec0158e (diff) | |
| download | ipm-2826819bb7086f68bcb815526278572ae6056fe9.tar.gz ipm-2826819bb7086f68bcb815526278572ae6056fe9.zip | |
:sparkles: feat(exception): new exception PackageExsitsError
| -rw-r--r-- | src/ipm/exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ipm/exceptions.py b/src/ipm/exceptions.py index e57f6cd..3629363 100644 --- a/src/ipm/exceptions.py +++ b/src/ipm/exceptions.py @@ -36,3 +36,7 @@ class VerifyFailed(IpmException): class FileTypeMismatch(IpmException): """Ipk file type mismatch""" + + +class PackageExsitsError(IpmException): + """Package already installed""" |
