aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ltw/ExceptionHandler.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ltw/ExceptionHandler.aj')
-rw-r--r--tests/ltw/ExceptionHandler.aj9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ltw/ExceptionHandler.aj b/tests/ltw/ExceptionHandler.aj
new file mode 100644
index 000000000..447b59577
--- /dev/null
+++ b/tests/ltw/ExceptionHandler.aj
@@ -0,0 +1,9 @@
+public aspect ExceptionHandler {
+ void around() : execution(public void main(String[])) {
+ try {
+ proceed();
+ }
+ catch (Exception ex) {
+ }
+ }
+} \ No newline at end of file