ó
€
\c           @   sÆ   d  Z  d d l Z d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d	 e f d
 „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ	 d e f d „  ƒ  YZ
 d S(   s"   Exceptions used throughout packageiÿÿÿÿNt   PipErrorc           B   s   e  Z d  Z RS(   s   Base pip exception(   t   __name__t
   __module__t   __doc__(    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR       s   t   InstallationErrorc           B   s   e  Z d  Z RS(   s%   General exception during installation(   R   R   R   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR   	   s   t   UninstallationErrorc           B   s   e  Z d  Z RS(   s'   General exception during uninstallation(   R   R   R   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR      s   t   DistributionNotFoundc           B   s   e  Z d  Z RS(   sC   Raised when a distribution cannot be found to satisfy a requirement(   R   R   R   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR      s   t   BestVersionAlreadyInstalledc           B   s   e  Z d  Z RS(   sP   Raised when the most up-to-date version of a package is already
    installed.  (   R   R   R   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR      s   t
   BadCommandc           B   s   e  Z d  Z RS(   s0   Raised when virtualenv or a command is not found(   R   R   R   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR      s   t   CommandErrorc           B   s   e  Z d  Z RS(   s7   Raised when there is an error in command-line arguments(   R   R   R   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR	      s   t
   NoSSLErrorc           B   s   e  Z d  Z d „  Z RS(   s5   Raised when there's no ssl and not using '--insecure'c         C   s   t  j d ƒ S(   Ns  
            ###################################################################
            ##  You don't have an importable ssl module. You are most        ##
            ##  likely using Python 2.5, which did not include ssl           ##
            ##  support by default. In this state, we can not provide        ##
            ##  ssl certified downloads from PyPI.                           ##
            ##                                                               ##
            ##  You can do one of 2 things:                                  ##
            ##   1) Install this: https://pypi.python.org/pypi/ssl/          ##
            ##      (It provides ssl support for older Pythons )             ##
            ##   2) Use the --insecure option to allow this insecurity       ##
            ##                                                               ##
            ##  For more details, go to the  "SSL Certificate Verification"  ##
            ##  section located here:                                        ##
            ##     http://www.pip-installer.org/en/latest/logic.html         ##
            ##                                                               ##
            ###################################################################
            (   t   textwrapt   dedent(   t   self(    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyt   __str__%   s    (   R   R   R   R   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyR
   "   s   (   R   R   t	   ExceptionR    R   R   R   R   R   R	   R
   (    (    (    sU   /data/av2000/b2b/venv/lib/python2.7/site-packages/pip-1.3-py2.7.egg/pip/exceptions.pyt   <module>   s   