![JAR search and dependency download from the Maven repository](/logo.png)
org.protege.owl.rdf.impl.RepositoryRuntimeException Maven / Gradle / Ivy
package org.protege.owl.rdf.impl;
import org.openrdf.repository.RepositoryException;
public class RepositoryRuntimeException extends RuntimeException {
private static final long serialVersionUID = -7871457225828300162L;
public RepositoryRuntimeException(RepositoryException cause) {
super(cause);
}
@Override
public RepositoryException getCause() {
return (RepositoryException) super.getCause();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy