All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.housepower.jdbc.misc.Validate Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.github.housepower.jdbc.misc;

import java.sql.SQLException;

public class Validate {

    public static void isTrue(boolean expression) throws SQLException {
        isTrue(expression, null);
    }


    public static void isTrue(boolean expression, String message) throws SQLException {
        if (!expression) {
            throw new SQLException(message);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy