##// END OF EJS Templates
Change hardcoded functions to use reflection instead.
Change hardcoded functions to use reflection instead.

File last commit:

r10482:87812de9
r10633:183c8cfe
Show More
exceptions.py
20 lines | 912 B | text/x-python | PythonLexer
"""Contains all of the exceptions used in NBConvert explicitly"""
#-----------------------------------------------------------------------------
# Copyright (c) 2013, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
from __future__ import print_function
#-----------------------------------------------------------------------------
# Classes and functions
#-----------------------------------------------------------------------------
class ConversionException(Exception):
"""An exception raised by the conversion process."""
pass