First steps
Overview
Examples
All classes & functions
Appendices
Score gallery
Custom exceptions.
digraph InheritanceGraph { graph [bgcolor=transparent, color=lightsteelblue2, fontname=Arial, fontsize=10, outputorder=edgesfirst, overlap=prism, penwidth=2, rankdir=LR, splines=spline, style="dashed, rounded", truecolor=true ]; node [colorscheme=pastel19, fontname=Arial, fontsize=10, height=0, penwidth=2, shape=box, style="filled, rounded", width=0 ]; edge [color=lightslategrey, penwidth=1 ]; subgraph "cluster_abjad.exceptions" { graph [label="abjad.exceptions"]; node [color=1]; "abjad.exceptions.AssignabilityError" [URL="../api/abjad/exceptions.html#abjad.exceptions.AssignabilityError", color=black, fontcolor=white, label="Assignability\nError", target=_top]; "abjad.exceptions.ImpreciseMetronomeMarkError" [URL="../api/abjad/exceptions.html#abjad.exceptions.ImpreciseMetronomeMarkError", color=black, fontcolor=white, label="Imprecise\nMetronome\nMark\nError", target=_top]; "abjad.exceptions.LilyPondParserError" [URL="../api/abjad/exceptions.html#abjad.exceptions.LilyPondParserError", color=black, fontcolor=white, label="Lily\nPond\nParser\nError", target=_top]; "abjad.exceptions.MissingContextError" [URL="../api/abjad/exceptions.html#abjad.exceptions.MissingContextError", color=black, fontcolor=white, label="Missing\nContext\nError", target=_top]; "abjad.exceptions.MissingMetronomeMarkError" [URL="../api/abjad/exceptions.html#abjad.exceptions.MissingMetronomeMarkError", color=black, fontcolor=white, label="Missing\nMetronome\nMark\nError", target=_top]; "abjad.exceptions.ParentageError" [URL="../api/abjad/exceptions.html#abjad.exceptions.ParentageError", color=black, fontcolor=white, label="Parentage\nError", target=_top]; "abjad.exceptions.PersistentIndicatorError" [URL="../api/abjad/exceptions.html#abjad.exceptions.PersistentIndicatorError", color=black, fontcolor=white, label="Persistent\nIndicator\nError", target=_top]; "abjad.exceptions.SchemeParserFinishedError" [URL="../api/abjad/exceptions.html#abjad.exceptions.SchemeParserFinishedError", color=black, fontcolor=white, label="Scheme\nParser\nFinished\nError", target=_top]; "abjad.exceptions.UnboundedTimeIntervalError" [URL="../api/abjad/exceptions.html#abjad.exceptions.UnboundedTimeIntervalError", color=black, fontcolor=white, label="Unbounded\nTime\nInterval\nError", target=_top]; "abjad.exceptions.WellformednessError" [URL="../api/abjad/exceptions.html#abjad.exceptions.WellformednessError", color=black, fontcolor=white, label="Wellformedness\nError", target=_top]; } subgraph cluster_builtins { graph [label=builtins]; node [color=2]; "builtins.BaseException" [URL="https://docs.python.org/3.10/library/exceptions.html#BaseException", label="Base\nException", target=_top]; "builtins.Exception" [URL="https://docs.python.org/3.10/library/exceptions.html#Exception", label=Exception, target=_top]; "builtins.BaseException" -> "builtins.Exception"; "builtins.object" [URL="https://docs.python.org/3.10/library/functions.html#object", label=object, target=_top]; "builtins.object" -> "builtins.BaseException" [minlen=1]; } "builtins.Exception" -> "abjad.exceptions.AssignabilityError" [minlen=1]; "builtins.Exception" -> "abjad.exceptions.ImpreciseMetronomeMarkError" [minlen=2]; "builtins.Exception" -> "abjad.exceptions.LilyPondParserError" [minlen=1]; "builtins.Exception" -> "abjad.exceptions.MissingContextError" [minlen=2]; "builtins.Exception" -> "abjad.exceptions.MissingMetronomeMarkError" [minlen=1]; "builtins.Exception" -> "abjad.exceptions.ParentageError" [minlen=2]; "builtins.Exception" -> "abjad.exceptions.PersistentIndicatorError" [minlen=1]; "builtins.Exception" -> "abjad.exceptions.SchemeParserFinishedError" [minlen=2]; "builtins.Exception" -> "abjad.exceptions.UnboundedTimeIntervalError" [minlen=1]; "builtins.Exception" -> "abjad.exceptions.WellformednessError" [minlen=2]; }
Exceptions
AssignabilityError
Duration can not be assigned to note, rest or chord.
ImpreciseMetronomeMarkError
MetronomeMark is imprecise.
LilyPondParserError
Can not parse input.
MissingContextError
No context found.
MissingMetronomeMarkError
No metronome mark found.
ParentageError
A parentage error.
PersistentIndicatorError
Persistent indicator already attached at same context.
SchemeParserFinishedError
SchemeParser has finished parsing.
UnboundedTimeIntervalError
Time interval has no bounds.
WellformednessError
Score not well formed.