All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.protege.owl.rdf.impl.RepositoryRuntimeException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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