mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-19 20:36:32 +07:00
6a9bc6782d
IDEA-187595
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();
|
|
}
|
|
}
|