diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-12-21 12:21:49 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-12-21 12:21:49 +0900 |
commit | d47f38e22db5da29c6b3ccce6b213cdc169f0ecd (patch) | |
tree | e6ec96b88a836372f8689efe61ef1baf7769777e /sphinx/errors.py | |
parent | 26a17eade449bfec74aabc6adc9b056d52aa3cf0 (diff) | |
parent | acdcf81599d49de751811269cd428850605224a1 (diff) | |
download | sphinx-git-d47f38e22db5da29c6b3ccce6b213cdc169f0ecd.tar.gz |
Merge branch '2.0'
Diffstat (limited to 'sphinx/errors.py')
-rw-r--r-- | sphinx/errors.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sphinx/errors.py b/sphinx/errors.py index 7f8b1fbd5..64036721f 100644 --- a/sphinx/errors.py +++ b/sphinx/errors.py @@ -126,3 +126,8 @@ class PycodeError(Exception): class NoUri(Exception): """Raised by builder.get_relative_uri() if there is no URI available.""" pass + + +class FiletypeNotFoundError(Exception): + "Raised by get_filetype() if a filename matches no source suffix." + pass |