org.web3j.utils.Assertions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
Minimal set of web3j utility classes
package org.web3j.utils;
/**
* Assertion utility functions.
*/
public class Assertions {
/**
* Verify that the provided precondition holds true.
*
* @param assertionResult assertion value
* @param errorMessage error message if precondition failure
*/
public static void verifyPrecondition(boolean assertionResult, String errorMessage) {
if (!assertionResult) {
throw new RuntimeException(errorMessage);
}
}
}