Java - Exception Handling
Find the problem in this code snippet:
public void openFile() throws IOException {
try {
// code
} catch (Exception e) {
throw e;
}
}