![JAR search and dependency download from the Maven repository](/logo.png)
org.joo.libra.support.exceptions.PredicateExecutionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joo-libra Show documentation
Show all versions of joo-libra Show documentation
Java Predicate with SQL-like syntax support
package org.joo.libra.support.exceptions;
/**
* This exception will be thrown if any exception occurred while evaluating
* {@link org.joo.libra.Predicate}
*
* @author griever
*
*/
public class PredicateExecutionException extends RuntimeException {
private static final long serialVersionUID = 7343742359471386270L;
public PredicateExecutionException(final String msg, final Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy