mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
14 lines
244 B
Java
14 lines
244 B
Java
// "Add exception to method signature" "true"
|
|
|
|
class C {
|
|
interface I { }
|
|
|
|
public void localException() {
|
|
|
|
class Ex extends Exception { }
|
|
class LocalException extends Ex implements I { }
|
|
|
|
throw new LocalE<caret>xception();
|
|
}
|
|
}
|