Mark throwable with @NotNull instead of @Nullable

This commit is contained in:
JeremyStar™ 2024-07-21 16:38:37 +02:00
parent 9f638c486c
commit 3964512979
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -21,7 +21,6 @@ package de.staropensource.sosengine.base.exceptions;
import lombok.Getter; import lombok.Getter;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/** /**
* Represents an exception caused by some throwable. * Represents an exception caused by some throwable.
@ -43,7 +42,7 @@ public class UnexpectedThrowableException extends Exception {
* @return throwable * @return throwable
* @since v1-alpha1 * @since v1-alpha1
*/ */
@Nullable @NotNull
Throwable throwable; Throwable throwable;
/** /**