I want to know if it is good idea to use throws Exception with main method:
public static void main(String[] args) throws Exception {
...
public static void main(String[] args) throws SQLException {
...
I believe its a quick way to program, because in the other case, you have to write many try catch blocks.
Is this a right approach?
Chao