summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/pip-0.8.1-py2.7.egg/pip/exceptions.py
blob: 1ad1a616d59df5417000308edb4e8ca1deaa8a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Exceptions used throughout package"""


class InstallationError(Exception):
    """General exception during installation"""


class UninstallationError(Exception):
    """General exception during uninstallation"""


class DistributionNotFound(InstallationError):
    """Raised when a distribution cannot be found to satisfy a requirement"""


class BadCommand(Exception):
    """Raised when virtualenv or a command is not found"""