Somehow I always forget to add files... (sphinx.websupport.errors)

This commit is contained in:
Jacob Mason 2010-07-30 16:15:41 -05:00
parent 2528f3ddce
commit bc155cac92

View File

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
"""
sphinx.websupport.errors
~~~~~~~~~~~~~~~~~~~~~~~~
Contains Error classes for the web support package.
:copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
__all__ = ['DocumentNotFoundError', 'SrcdirNotSpecifiedError']
class DocumentNotFoundError(Exception):
pass
class SrcdirNotSpecifiedError(Exception):
pass