doxysphinx.utils.exceptions#

The exception module contains several standard exceptions.

Exceptions#

ApplicationError

A generic application error.

ValidationError

A generic error to indicate some validation failed.

PrerequisiteNotMetError

An application error that indicates that some prerequisite is not met.

Module Contents#

exception doxysphinx.utils.exceptions.ApplicationError(message)[source]#

Bases: Exception

digraph inheritance7709734f71 { bgcolor=transparent; rankdir=LR; size="8.0, 12.0"; "ApplicationError" [URL="#doxysphinx.utils.exceptions.ApplicationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="A generic application error."]; }

A generic application error.

exception doxysphinx.utils.exceptions.ValidationError(message)[source]#

Bases: Exception

digraph inheritance678083ff81 { bgcolor=transparent; rankdir=LR; size="8.0, 12.0"; "ValidationError" [URL="#doxysphinx.utils.exceptions.ValidationError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="A generic error to indicate some validation failed."]; }

A generic error to indicate some validation failed.

exception doxysphinx.utils.exceptions.PrerequisiteNotMetError(message)[source]#

Bases: Exception

digraph inheritanceb65146e1de { bgcolor=transparent; rankdir=LR; size="8.0, 12.0"; "PrerequisiteNotMetError" [URL="#doxysphinx.utils.exceptions.PrerequisiteNotMetError",fillcolor=white,fontname="Vera Sans, DejaVu Sans, Liberation Sans, Arial, Helvetica, sans",fontsize=10,height=0.25,shape=box,style="setlinewidth(0.5),filled",target="_top",tooltip="An application error that indicates that some prerequisite is not met."]; }

An application error that indicates that some prerequisite is not met.