com.intersystems.iknow.languagemodel.slavic.AnalysisException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of languagemodel-slavic Show documentation
Show all versions of languagemodel-slavic Show documentation
Slavic Language Model for use with iKnow/iFind
The newest version!
/*-
* $Id: 7f782338d90ed201537310bfdf354afd7ad8e936 $
*/
package com.intersystems.iknow.languagemodel.slavic;
import java.rmi.RemoteException;
/**
* @author Andrey Shcheglov (mailto:[email protected])
*/
public final class AnalysisException extends RemoteException {
private static final long serialVersionUID = 8302653720251053912L;
/**
* @param cause
*/
public AnalysisException(final Throwable cause) {
this.initCause(cause);
}
}