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

ru.lanwen.wiremock.ext.Validate Maven / Gradle / Ivy

The newest version!
package ru.lanwen.wiremock.ext;

import lombok.experimental.UtilityClass;

/**
 * @author lanwen (Kirill Merkushev)
 */
@UtilityClass
class Validate {

    static void validState(boolean stateValid, String message) {
        if (!stateValid) {
            throw new IllegalStateException(message);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy