org.mariadb.r2dbc.util.Assert Maven / Gradle / Ivy
The newest version!
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2020-2024 MariaDB Corporation Ab
package org.mariadb.r2dbc.util;
import reactor.util.annotation.Nullable;
public final class Assert {
private Assert() {}
public static T requireNonNull(@Nullable T t, String message) {
if (t == null) {
throw new IllegalArgumentException(message);
}
return t;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy