blob: 9f7cde9570b2390640b5cfc233bc09d6dfdf45e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from __future__ import unicode_literals
from sphinx.errors import ExtensionError
__author__ = 'rjs'
class HieroglyphError(ExtensionError):
'''
An exception type specific to the Hieroglyph Sphinx extension.
'''
pass
|