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

com.dmj.sqldsl.executor.exception.UnsupportedConditionMethodException Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy