summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/afterAdvice/AfterThrowing.aj
blob: d04e42ea29aa95bd97e175b1e6e14828fba8eaa4 (plain)
1
2
3
4
5
6
7
8
9
10
public aspect AfterThrowing {
	
	// since a generic type may not be a subtype of throwable, this is always an
	// error.
	
	after() throwing(java.util.List<String> ls) : execution(* *(..)){
		
	}
	
}