Example

public static class Loader {
public void load() throws UnsupportedOperationException, ClassNotFoundException {}
}


public static void main(String[] args) {
Loader loader = new Loader();
try {
loader.load();
} catch ( Exception e ) {
e.printStackTrace();
}
}

Solution
Create a dedicated catch clause for each exception that is declared in the throws clause.

public static class Loader {
public void load() throws UnsupportedOperationException, ClassNotFoundException {}
}


public static void main(String[] args) {
Loader loader = new Loader();
try {
loader.load();
} catch ( UnsupportedOperationException e1 ) {
System.out.println( "load is not implemented" ); //$NON-NLS-1$
} catch ( ClassNotFoundException e2 ) {
System.out.println( "No class " + e2.getMessage() ); //$NON-NLS-1$
}
}