blob: a97c8cc1c31ed406e95d5ea63b59cc6c2c4b47dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public aspect pr78707 {
before() returning : execution(* *(..)) {
// yeah, right!
}
before() throwing : execution(* *(..)) {
System.out.println("I'm not flippin' phsycic you know!");
}
}
|