
    9 f                         d Z  G d de          Z G d de          Z G d de          Z G d dee          Z G d	 d
e          ZdS )zx
Global exception classes for IPython.core.

Authors:

* Brian Granger
* Fernando Perez
* Min Ragan-Kelley

Notes
-----
c                       e Zd ZdS )IPythonCoreErrorN)__name__
__module____qualname__     H/var/www/equiseq/venv/lib/python3.11/site-packages/IPython/core/error.pyr   r      s        Dr   r   c                       e Zd ZdZdS )TryNextzTry next hook exception.

    Raise this in your hook function to indicate that the next hook handler
    should be used to handle the operation.
    Nr   r   r   __doc__r   r   r	   r   r   "              r   r   c                       e Zd ZdZdS )
UsageErrorzError in magic function arguments, etc.

    Something that probably won't warrant a full traceback, but should
    nevertheless interrupt a macro / batch file.
    Nr   r   r   r	   r   r   )   r   r   r   c                       e Zd ZdZdS )StdinNotImplementedErrorzraw_input was requested in a context where it is not supported

    For use in IPython kernels, where only some frontends may support
    stdin requests.
    Nr   r   r   r	   r   r   0   r   r   r   c                       e Zd ZdZdS )InputRejectedzInput rejected by ast transformer.

    Raise this in your NodeTransformer to indicate that InteractiveShell should
    not execute the supplied input.
    Nr   r   r   r	   r   r   7   r   r   r   N)r   	Exceptionr   r   r   NotImplementedErrorr   r   r   r   r	   <module>r      s    8	 	 	 	 	y 	 	 	           !       /1D       I     r   