com.dmj.sqldsl.executor.exception.UnsupportedConditionMethodException Maven / Gradle / Ivy
package com.dmj.sqldsl.executor.exception;
import com.dmj.sqldsl.model.condition.ConditionMethod;
public class UnsupportedConditionMethodException extends RuntimeException {
private final ConditionMethod method;
public UnsupportedConditionMethodException(ConditionMethod method) {
super("Unsupported condition method: " + method);
this.method = method;
}
public ConditionMethod getMethod() {
return this.method;
}
}