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

com.joliciel.jochre.search.JochreQueryParseException Maven / Gradle / Ivy

There is a newer version: 2.6.4
Show newest version
package com.joliciel.jochre.search;

import com.joliciel.jochre.utils.JochreException;

public class JochreQueryParseException extends JochreException {
  private static final long serialVersionUID = 1L;

  public JochreQueryParseException(String message) {
    super(message);
  }

  public JochreQueryParseException(Exception e) {
    super(e);
  }

  public JochreQueryParseException(Throwable cause) {
    super(cause);
  }

  public JochreQueryParseException(String message, Throwable cause) {
    super(message, cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy