exceptions.py 676 B

12345678910111213141516
  1. """NbConvert specific exceptions"""
  2. #-----------------------------------------------------------------------------
  3. # Copyright (c) 2013, the IPython Development Team.
  4. #
  5. # Distributed under the terms of the Modified BSD License.
  6. #
  7. # The full license is in the file COPYING.txt, distributed with this software.
  8. #-----------------------------------------------------------------------------
  9. #-----------------------------------------------------------------------------
  10. # Classes and functions
  11. #-----------------------------------------------------------------------------
  12. class ConversionException(Exception):
  13. """An exception raised by the conversion process."""
  14. pass