forked from almalinux/almalinux-git-utils
- added alma_get_sources tool - added tests for common functions - added setup.py and the project uploaded to PyPi
16 lines
232 B
Python
16 lines
232 B
Python
"""AlmaLinux Git server utilities error classes"""
|
|
|
|
|
|
class ChecksumError(Exception):
|
|
|
|
"""File checksum mismatch exception"""
|
|
|
|
pass
|
|
|
|
|
|
class NetworkError(Exception):
|
|
|
|
"""Network error exception"""
|
|
|
|
pass
|