Will this work correctly (it compiles). Or is there a better way for me to do this?
public static void main(String[] args)
throws AWTException, IOException{}
|
Will this work correctly (it compiles). Or is there a better way for me to do this?
|
|||||
|
|
Yes, that will work. But for future reference, if you find yourself throwing multiple exceptions that are similar and are recovered from in the same manner, see if they both inherit from the same parent exception other than java.lang.Exception. If so, you can throw that instead. You can always just throw Exception itself (and nothing else) but that brings up some best-practice issues. |
||||
|
|
|
Why don't write some code and test it, you are half way there. It looks fine. The method |
|||||
|