org.wikidata.query.rdf.tool.exception.ContainedException 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.
package org.wikidata.query.rdf.tool.exception;
/**
* The operation failed and likely won't succeed with those parameters unless
* some action is taken but the rest of the operation should proceed.
*/
public class ContainedException extends RuntimeException {
private static final long serialVersionUID = 1384427696241404325L;
public ContainedException(String message, Throwable cause) {
super(message, cause);
}
public ContainedException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy