com.formulasearchengine.mathmltools.similarity.util.MathNodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mathml-similarity Show documentation
Show all versions of mathml-similarity Show documentation
API to calculate similarities between MathML documents.
package com.formulasearchengine.mathmltools.similarity.util;
import com.formulasearchengine.mathmltools.similarity.node.MathNode;
/**
* Just an explicit exception thrown during the {@link MathNode} generation.
*
* @author Vincent Stange
*/
public class MathNodeException extends Exception {
public MathNodeException(String message, Throwable throwable) {
super(message, throwable);
}
}