Repository URL to install this package:
| 
      
        
        
        Version: 
        
         
          
          3.0.176  ▾
        
         | 
| 
    
    tvault-contego-common
  
    /
        
    home
  
        /
        
    tvault
  
        /
        
    .virtenv
  
        /
        
    lib
  
        /
        
    python2.7
  
        /
        
    site-packages
  
        /
        
    keystoneauth1
  
        /
        
    exceptions
  
        /
        auth_plugins.pyc
   | 
|---|
ó
µEYc           @   s¡   d  d l  m Z d Z d e j 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(   iÿÿÿÿ(   t   baset   AuthPluginExceptiont   MissingAuthPlugint   NoMatchingPlugint   UnsupportedParameterst   OptionErrort   MissingRequiredOptionsc           B   s   e  Z d  Z RS(   s*   Unknown error with authentication plugins.(   t   __name__t
   __module__t   message(    (    (    sZ   /home/tvault/.virtenv/lib/python2.7/site-packages/keystoneauth1/exceptions/auth_plugins.pyR      s   c           B   s   e  Z d  Z RS(   s=   An authenticated request is required but no plugin available.(   R   R   R	   (    (    (    sZ   /home/tvault/.virtenv/lib/python2.7/site-packages/keystoneauth1/exceptions/auth_plugins.pyR      s   c           B   s   e  Z d  Z d   Z RS(   sä   No auth plugins could be created from the parameters provided.
    :param str name: The name of the plugin that was attempted to load.
    .. py:attribute:: name
        The name of the plugin that was attempted to load.
    c         C   s-   | |  _  d | } t t |   j |  d  S(   Ns    The plugin %s could not be found(   t   namet   superR   t   __init__(   t   selfR
   t   msg(    (    sZ   /home/tvault/.virtenv/lib/python2.7/site-packages/keystoneauth1/exceptions/auth_plugins.pyR   *   s    	
(   R   R   t   __doc__R   (    (    (    sZ   /home/tvault/.virtenv/lib/python2.7/site-packages/keystoneauth1/exceptions/auth_plugins.pyR       s   c           B   s   e  Z d  Z d   Z RS(   sÍ   A parameter that was provided or returned is not supported.
    :param list(str) names: Names of the unsupported parameters.
    .. py:attribute:: names
        Names of the unsupported parameters.
    c         C   s9   | |  _  d } t t |   j | d j |  j    d  S(   Ns<