mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Somehow I always forget to add files... (sphinx.websupport.errors)
This commit is contained in:
parent
2528f3ddce
commit
bc155cac92
19
sphinx/websupport/errors.py
Normal file
19
sphinx/websupport/errors.py
Normal 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
|
Loading…
Reference in New Issue
Block a user