@@ -98,7 +98,7 @@ void rejectsPerCflowBelowAspect() {
98
98
}
99
99
100
100
@ Test
101
- void perTargetAspect () throws SecurityException , NoSuchMethodException {
101
+ void perTargetAspect () throws Exception {
102
102
TestBean target = new TestBean ();
103
103
int realAge = 65 ;
104
104
target .setAge (realAge );
@@ -130,7 +130,7 @@ void perTargetAspect() throws SecurityException, NoSuchMethodException {
130
130
}
131
131
132
132
@ Test
133
- void multiplePerTargetAspects () throws SecurityException , NoSuchMethodException {
133
+ void multiplePerTargetAspects () throws Exception {
134
134
TestBean target = new TestBean ();
135
135
int realAge = 65 ;
136
136
target .setAge (realAge );
@@ -158,7 +158,7 @@ void multiplePerTargetAspects() throws SecurityException, NoSuchMethodException
158
158
}
159
159
160
160
@ Test
161
- void multiplePerTargetAspectsWithOrderAnnotation () throws SecurityException , NoSuchMethodException {
161
+ void multiplePerTargetAspectsWithOrderAnnotation () throws Exception {
162
162
TestBean target = new TestBean ();
163
163
int realAge = 65 ;
164
164
target .setAge (realAge );
@@ -184,7 +184,7 @@ void multiplePerTargetAspectsWithOrderAnnotation() throws SecurityException, NoS
184
184
}
185
185
186
186
@ Test
187
- void perThisAspect () throws SecurityException , NoSuchMethodException {
187
+ void perThisAspect () throws Exception {
188
188
TestBean target = new TestBean ();
189
189
int realAge = 65 ;
190
190
target .setAge (realAge );
@@ -220,7 +220,7 @@ void perThisAspect() throws SecurityException, NoSuchMethodException {
220
220
}
221
221
222
222
@ Test
223
- void perTypeWithinAspect () throws SecurityException , NoSuchMethodException {
223
+ void perTypeWithinAspect () throws Exception {
224
224
TestBean target = new TestBean ();
225
225
int realAge = 65 ;
226
226
target .setAge (realAge );
0 commit comments