From 13b23963ec626f549852a71180d9ee193e73e611 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 12 Mar 2019 01:07:47 -0400 Subject: [PATCH] Add exception hierarchy to the documentation. --- docs/_static/style.css | 15 ++++++++++++++ docs/api.rst | 17 ++++++++++++++++ docs/conf.py | 3 ++- docs/ext/commands/api.rst | 26 +++++++++++++++++++++++-- docs/extensions/exception_hierarchy.py | 27 ++++++++++++++++++++++++++ 5 files changed, 85 insertions(+), 3 deletions(-) create mode 100644 docs/extensions/exception_hierarchy.py diff --git a/docs/_static/style.css b/docs/_static/style.css index 6073b3709..81166de45 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -322,6 +322,21 @@ div.helpful > p.admonition-title:after { content: unset; } +/* exception hierarchy */ + +.exception-hierarchy-content dd, +.exception-hierarchy-content dl { + margin: 0px 2px; +} + +.exception-hierarchy-content { + margin-left: 0.5em; +} + +.exception-hierarchy-content ul { + list-style: 'ยป' !important; +} + pre { background-color: #f5f5f5; border: 1px solid #C6C9CB; diff --git a/docs/api.rst b/docs/api.rst index b80ee139a..d1d2e7543 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -2196,3 +2196,20 @@ The following exceptions are thrown by the library. .. autoexception:: discord.opus.OpusError .. autoexception:: discord.opus.OpusNotLoaded + +Exception Hierarchy +~~~~~~~~~~~~~~~~~~~~~ + +.. exception_hierarchy:: + + - :exc:`Exception` + - :exc:`DiscordException` + - :exc:`ClientException` + - :exc:`NoMoreItems` + - :exc:`GatewayNotFound` + - :exc:`HTTPException` + - :exc:`Forbidden` + - :exc:`NotFound` + - :exc:`InvalidArgument` + - :exc:`LoginFailure` + - :exc:`ConnectionClosed` diff --git a/docs/conf.py b/docs/conf.py index a1a118690..58c32c3fb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -36,7 +36,8 @@ extensions = [ 'sphinx.ext.intersphinx', 'sphinx.ext.napoleon', 'sphinxcontrib.asyncio', - 'details' + 'details', + 'exception_hierarchy' ] autodoc_member_order = 'bysource' diff --git a/docs/ext/commands/api.rst b/docs/ext/commands/api.rst index 0a919210a..7dc46e08b 100644 --- a/docs/ext/commands/api.rst +++ b/docs/ext/commands/api.rst @@ -214,8 +214,8 @@ Converters .. _ext_commands_api_errors: -Errors -------- +Exceptions +----------- .. autoexception:: discord.ext.commands.CommandError :members: @@ -265,3 +265,25 @@ Errors .. autoexception:: discord.ext.commands.BotMissingPermissions :members: +Exception Hierarchy ++++++++++++++++++++++ + +.. exception_hierarchy:: + + - :exc:`~.DiscordException` + - :exc:`~.commands.CommandError` + - :exc:`~.commands.ConversionError` + - :exc:`~.commands.UserInputError` + - :exc:`~.commands.MissingRequiredArgument` + - :exc:`~.commands.TooManyArguments` + - :exc:`~.commands.BadArgument` + - :exc:`~.commands.BadUnionArgument` + - :exc:`~.commands.CommandNotFound` + - :exc:`~.commands.CheckFailure` + - :exc:`~.commands.NoPrivateMessage` + - :exc:`~.commands.NotOwner` + - :exc:`~.commands.MissingPermissions` + - :exc:`~.commands.BotMissingPermissions` + - :exc:`~.commands.DisabledCommand` + - :exc:`~.commands.CommandInvokeError` + - :exc:`~.commands.CommandOnCooldown` diff --git a/docs/extensions/exception_hierarchy.py b/docs/extensions/exception_hierarchy.py new file mode 100644 index 000000000..cc69a7ce7 --- /dev/null +++ b/docs/extensions/exception_hierarchy.py @@ -0,0 +1,27 @@ +from docutils.parsers.rst import Directive +from docutils.parsers.rst import states, directives +from docutils.parsers.rst.roles import set_classes +from docutils import nodes +from sphinx.locale import _ + +class exception_hierarchy(nodes.General, nodes.Element): + pass + +def visit_exception_hierarchy_node(self, node): + self.body.append(self.starttag(node, 'div', CLASS='exception-hierarchy-content')) + +def depart_exception_hierarchy_node(self, node): + self.body.append('\n') + +class ExceptionHierarchyDirective(Directive): + has_content = True + + def run(self): + self.assert_has_content() + node = exception_hierarchy('\n'.join(self.content)) + self.state.nested_parse(self.content, self.content_offset, node) + return [node] + +def setup(app): + app.add_node(exception_hierarchy, html=(visit_exception_hierarchy_node, depart_exception_hierarchy_node)) + app.add_directive('exception_hierarchy', ExceptionHierarchyDirective)