aboutsummaryrefslogtreecommitdiffstats
path: root/ajde.core/testdata/WeaveInfoMessagesTest/AspectDeclareSoft.aj
blob: c5adc95398694b2992982ac6fb6fd430533c8f5c (plain)
1
2
3
4
5
6
7
8
9
public aspect AspectDeclareSoft {
	
  declare soft: MyException: execution(* main(..));

  declare soft: Exception+: execution(* main(..));

}
class MyException extends Exception {}