Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting/ExceptionNeverThrownInTry.java
2010-06-25 12:46:38 +04:00

13 lines
248 B
Java

import java.io.*;
import java.sql.*;
////////////
class x {
void f() {
try {
int i = 0;
}
catch (<error descr="Exception 'java.io.IOException' is never thrown in the corresponding try block">IOException e</error>) {
}
}
}