Function for an applet/application to kill itself and display an error. Mostly this is here to be improved later.
(String what)
| 3738 | * display an error. Mostly this is here to be improved later. |
| 3739 | */ |
| 3740 | public void die(String what) { |
| 3741 | dispose(); |
| 3742 | throw new RuntimeException(what); |
| 3743 | } |
| 3744 | |
| 3745 | |
| 3746 | /** |
no test coverage detected