File size: 429 Bytes
b04beb1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | class PyStataError(Exception):
"""
This class is the base class for other exceptions defined in this module.
"""
pass
class IPythonError(PyStataError):
"""
The class is used to indicate whether the system has IPython support.
"""
pass
class IPyKernelError(PyStataError):
"""
The class is used to indicate whether pystata is running in IPython
interactive session.
"""
pass
|