ó
æNXc           @   s{   d  Z  d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e f d „  ƒ  YZ d e e f d „  ƒ  YZ d	 e f d
 „  ƒ  YZ d S(   sx   
Global exception classes for IPython.core.

Authors:

* Brian Granger
* Fernando Perez
* Min Ragan-Kelley

Notes
-----
t   IPythonCoreErrorc           B   s   e  Z RS(    (   t   __name__t
   __module__(    (    (    sJ   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/core/error.pyR       s   t   TryNextc           B   s   e  Z d  Z RS(   s–   Try next hook exception.

    Raise this in your hook function to indicate that the next hook handler
    should be used to handle the operation.
    (   R   R   t   __doc__(    (    (    sJ   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/core/error.pyR   "   s   t
   UsageErrorc           B   s   e  Z d  Z RS(   s¥   Error in magic function arguments, etc.

    Something that probably won't warrant a full traceback, but should
    nevertheless interrupt a macro / batch file.
    (   R   R   R   (    (    (    sJ   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/core/error.pyR   )   s   t   StdinNotImplementedErrorc           B   s   e  Z d  Z RS(   sž   raw_input was requested in a context where it is not supported

    For use in IPython kernels, where only some frontends may support
    stdin requests.
    (   R   R   R   (    (    (    sJ   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/core/error.pyR   0   s   t   InputRejectedc           B   s   e  Z d  Z RS(   sœ   Input rejected by ast transformer.

    Raise this in your NodeTransformer to indicate that InteractiveShell should
    not execute the supplied input.
    (   R   R   R   (    (    (    sJ   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/core/error.pyR   7   s   N(   R   t	   ExceptionR    R   R   t   NotImplementedErrorR   R   (    (    (    sJ   /data/av2000/mvv/env_mvv/lib/python2.7/site-packages/IPython/core/error.pyt   <module>   s
   