diff options
Diffstat (limited to 'src/distutils2/index/errors.py')
| -rw-r--r-- | src/distutils2/index/errors.py | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/src/distutils2/index/errors.py b/src/distutils2/index/errors.py deleted file mode 100644 index e6e5870..0000000 --- a/src/distutils2/index/errors.py +++ /dev/null @@ -1,41 +0,0 @@ -"""distutils2.pypi.errors - -All errors and exceptions raised by PyPiIndex classes. -""" -from distutils2.errors import DistutilsIndexError - - -class ProjectNotFound(DistutilsIndexError): - """Project has not been found""" - - -class DistributionNotFound(DistutilsIndexError): - """The release has not been found""" - - -class ReleaseNotFound(DistutilsIndexError): - """The release has not been found""" - - -class CantParseArchiveName(DistutilsIndexError): - """An archive name can't be parsed to find distribution name and version""" - - -class DownloadError(DistutilsIndexError): - """An error has occurs while downloading""" - - -class HashDoesNotMatch(DownloadError): - """Compared hashes does not match""" - - -class UnsupportedHashName(DistutilsIndexError): - """A unsupported hashname has been used""" - - -class UnableToDownload(DistutilsIndexError): - """All mirrors have been tried, without success""" - - -class InvalidSearchField(DistutilsIndexError): - """An invalid search field has been used""" |
