org.wikidata.query.rdf.tool.exception.FatalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools Show documentation
Show all versions of tools Show documentation
Tools to sync Wikibase to RDF stores. Also contains overall integration tests that rely on everything else.
The newest version!
package org.wikidata.query.rdf.tool.exception;
/**
* The operation failed and the whole application is likely busted and should be
* stopped.
*/
public class FatalException extends RuntimeException {
public FatalException(String message, Throwable cause) {
super(message, cause);
}
public FatalException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy