File tree 2 files changed +1
-6
lines changed
spring-aop/src/main/java/org/aopalliance 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 16
16
17
17
package org .aopalliance .aop ;
18
18
19
- import org .springframework .lang .Nullable ;
20
-
21
19
/**
22
20
* Superclass for all AOP infrastructure exceptions.
23
21
* Unchecked, as such exceptions are fatal and end user
@@ -43,7 +41,7 @@ public AspectException(String message) {
43
41
* @param message the exception message
44
42
* @param cause the root cause, if any
45
43
*/
46
- public AspectException (String message , @ Nullable Throwable cause ) {
44
+ public AspectException (String message , Throwable cause ) {
47
45
super (message , cause );
48
46
}
49
47
Original file line number Diff line number Diff line change 16
16
17
17
package org .aopalliance .intercept ;
18
18
19
- import org .springframework .lang .Nullable ;
20
-
21
19
/**
22
20
* Intercepts calls on an interface on its way to the target. These
23
21
* are nested "on top" of the target.
@@ -54,7 +52,6 @@ public interface MethodInterceptor extends Interceptor {
54
52
* @throws Throwable if the interceptors or the target object
55
53
* throws an exception
56
54
*/
57
- @ Nullable
58
55
Object invoke (MethodInvocation invocation ) throws Throwable ;
59
56
60
57
}
You can’t perform that action at this time.
0 commit comments