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

Fixes: #9713

**Auto-cherry-pick to `6.3.x`**
This commit is contained in:
Falk Hanisch
2024-12-13 03:33:50 +01:00
committed by GitHub
parent a4b193fa64
commit c677fc56f2

View File

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