org.openprovenance.prov.interop.InteropException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov-interop Show documentation
Show all versions of prov-interop Show documentation
A package aimed at systematic testing convertibility of prov representations.
package org.openprovenance.prov.interop;
/** A Runtime Exception for the InteropFramework. */
public class InteropException extends RuntimeException {
private static final long serialVersionUID = 341614640704209138L;
public InteropException(Exception e) {
super(e);
}
public InteropException(Throwable e) {
super (e);
}
public InteropException(String message, Throwable cause) {
super(message, cause);
}
public InteropException(String string) {
super(string);
}
}