Package xyz.srnyx.annoyingapi.storage
Class FailedSet
java.lang.Object
xyz.srnyx.annoyingapi.storage.FailedSet
Represents a failed set operation
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal @NotNull StringThe column that the set operation failed onfinal @Nullable ThrowableThe exception that occurred while attempting to set the valuefinal @NotNull StringThe table that the set operation failed onfinal @NotNull StringThe target that the set operation failed forfinal @Nullable StringThe value that the set operation failed with -
Constructor Summary
ConstructorsConstructorDescriptionFailedSet(@NotNull String table, @NotNull String target, @NotNull String column, @Nullable String value) Constructs a new failed set with the given table, target, column, and valueFailedSet(@NotNull String table, @NotNull String target, @NotNull String column, @Nullable String value, @NotNull Throwable exception) Constructs a new failed set with the given table, target, column, value, and exception -
Method Summary
-
Field Details
-
table
The table that the set operation failed on -
target
The target that the set operation failed for -
column
The column that the set operation failed on -
value
The value that the set operation failed with -
exception
The exception that occurred while attempting to set the value
-
-
Constructor Details
-
FailedSet
public FailedSet(@NotNull @NotNull String table, @NotNull @NotNull String target, @NotNull @NotNull String column, @Nullable @Nullable String value) Constructs a new failed set with the given table, target, column, and value -
FailedSet
public FailedSet(@NotNull @NotNull String table, @NotNull @NotNull String target, @NotNull @NotNull String column, @Nullable @Nullable String value, @NotNull @NotNull Throwable exception) Constructs a new failed set with the given table, target, column, value, and exception
-