blob: 3c3021d5d39cd212d11699552fe612154281deb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
public class InheritedThrows {
static aspect A {
after() throwing(Ex1 a): execution(* *.*(..) throws Ex1) {}
}
public static class Ex1 extends Exception {}
public static class Ex2 extends Exception {}
public interface MyInterface {
public void m() throws Ex1, Ex2;
}
private static class NestedClass1 implements MyInterface {
public void m() throws Ex1 {} // MATCHES HERE
}
private static class NestedClass2 implements MyInterface {
public void m() throws Ex2 {}
}
private static class NestedClassBoth implements MyInterface {
public void m() throws Ex1, Ex2 {} // MATCHES HERE
}
private static class NestedClassNeither implements MyInterface {
public void m() {}
}
}
|