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

edu.isi.nlp.converters.ConversionException Maven / Gradle / Ivy

The newest version!
package edu.isi.nlp.converters;

public class ConversionException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public ConversionException(String msg) {
    super(msg);
  }

  public ConversionException(String msg, Throwable cause) {
    super(msg, cause);
  }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy