mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
15 lines
297 B
Java
15 lines
297 B
Java
package extension;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class CheckedExeptionQuickFixExample {
|
|
|
|
public int calcSomething() {
|
|
<caret>throw new IOException();
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(new CheckedExeptionQuickFixExample().calcSomething());
|
|
}
|
|
}
|