diff options
author | Jacob Mason <jacoblmason@gmail.com> | 2010-07-30 16:15:41 -0500 |
---|---|---|
committer | Jacob Mason <jacoblmason@gmail.com> | 2010-07-30 16:15:41 -0500 |
commit | bc155cac92da11d738af89b128ad7f3ff137bd76 (patch) | |
tree | 4c5ced1c63b0e571e636ec741a0441456c8fcd09 /sphinx/websupport/errors.py | |
parent | 2528f3ddce3209fec1b4910cfbb73d291ac5a25b (diff) | |
download | sphinx-git-bc155cac92da11d738af89b128ad7f3ff137bd76.tar.gz |
Somehow I always forget to add files... (sphinx.websupport.errors)
Diffstat (limited to 'sphinx/websupport/errors.py')
-rw-r--r-- | sphinx/websupport/errors.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sphinx/websupport/errors.py b/sphinx/websupport/errors.py new file mode 100644 index 000000000..b1c47915e --- /dev/null +++ b/sphinx/websupport/errors.py @@ -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 |