tfm-slides/figs/exception-hierarchy.dot

14 lines
333 B
Text
Raw Normal View History

2019-12-15 15:32:54 +01:00
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;
}
}