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

io.github.mightguy.symspell.solr.utils.FatalException Maven / Gradle / Ivy

There is a newer version: 6.6.154
Show newest version

package io.github.mightguy.symspell.solr.utils;

/**
 * Use it for all Runtime Exceptions to pass check style.
 */
public class FatalException extends RuntimeException {

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy