tfm-slides/figs/exception-hierarchy.dot
2019-12-15 15:32:54 +01:00

14 lines
No EOL
333 B
Text

digraph g {
node [shape = rect];
Exception;
Error [style="dashed"];
RuntimeException [style="dashed"];
Throwable -> {Exception Error};
Exception -> RuntimeException;
{ node [label="...",style=dashed];
a [style=""];
Exception -> a;
Error -> b;
RuntimeException -> c;
}
}