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

org.molgenis.semanticmapper.service.impl.AlgorithmException Maven / Gradle / Ivy

package org.molgenis.semanticmapper.service.impl;

/** @deprecated use class that extends from {@link org.molgenis.i18n.CodedRuntimeException} */
@Deprecated
public class AlgorithmException extends RuntimeException {
  public AlgorithmException(String message) {
    super(message);
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy