You could rethrow the catched Exception, if you want. But this construction checks, that you see all Exceptions
Stephan Thomas schrieb:
I've placed the stop method in the application class, but it didn't work.
Here's the code, may you can help me out?
public void stop() {
this.container.close();
try {
super.stop();
} catch (Exception e) {
e.printStackTrace()
}
}
thanks

