GH-9713: Add @Nullable to IntegrationEvent.getCause()

Fixes: #9713

(cherry picked from commit c677fc56f2)
This commit is contained in:
Falk Hanisch
2024-12-13 03:33:50 +01:00
committed by Spring Builds
parent 4bb46246df
commit ea441ff827

View File

@@ -43,6 +43,7 @@ public abstract class IntegrationEvent extends ApplicationEvent {
this.cause = cause;
}
@Nullable
public Throwable getCause() {
return this.cause;
}