U
    h                     @   sF   G d d de ZG dd deZG dd deZG dd deeZdS )	c                   @   s   e Zd ZdZdd ZdS )CommandlinesErrorzJBase exception class for all exceptions raised by the commandlines libraryc                 C   s   t | | d S )N)	Exception__init__)selfmessage r   I/var/www/html/venv/lib/python3.8/site-packages/commandlines/exceptions.pyr      s    zCommandlinesError.__init__N__name__
__module____qualname____doc__r   r   r   r   r   r      s   r   c                   @   s   e Zd ZdZdd ZdS )MissingArgumentErrorzMissing argument exceptionc                 C   s    d| d | _ t| | j  d S )Nz*Missing argument exception: the argument '' was not found.error_messager   r   )r   argumentr   r   r   r      s    zMissingArgumentError.__init__Nr   r   r   r   r   r      s   r   c                   @   s   e Zd ZdZdd ZdS )MissingDictionaryKeyErrorz Missing dictionary key exceptionc                 C   s    d| d | _ t| | j  d S )Nz6Missing dictionary key exception: the dictionary key 'r   r   )r   Zdict_keyr   r   r   r      s    z"MissingDictionaryKeyError.__init__Nr   r   r   r   r   r      s   r   c                   @   s   e Zd ZdZdd ZdS )IndexOutOfRangeErrorzIndex out of range exceptionc                 C   s"   d| _ t|  t| | j  d S )NzSIndex out of range exception.  The requested index fell outside of the index range.)r   
IndexErrorr   r   )r   r   r   r   r      s    
zIndexOutOfRangeError.__init__Nr   r   r   r   r   r      s   r   N)r   r   r   r   r   r   r   r   r   r   <module>   s   