You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pr78707.aj 200B

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