Mark throwable with @NotNull instead of @Nullable
This commit is contained in:
parent
9f638c486c
commit
3964512979
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue