org.joo.libra.support.MalformedSyntaxException 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;
public class MalformedSyntaxException extends RuntimeException {
private static final long serialVersionUID = 7343742359471386270L;
public MalformedSyntaxException(String msg) {
super(msg);
}
public MalformedSyntaxException(Throwable cause) {
super(cause);
}
public MalformedSyntaxException(String msg, Throwable cause) {
super(msg, cause);
}
}