org.openrdf.result.MultipleResultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibaba-repository-object Show documentation
Show all versions of alibaba-repository-object Show documentation
The Object Repository maps Java objects to and from RDF resources and OWL classes to Java classes in a non-intrusive manner that enables developers to work at the object level.
The newest version!
/*
* Copyright Aduna (http://www.aduna-software.com/) (c) 2009.
*
* Licensed under the Aduna BSD-style license.
*/
package org.openrdf.result;
import org.openrdf.query.QueryEvaluationException;
/**
* Expected a single result, but there were either zero or more than one result.
*
* @author James Leigh
*/
public class MultipleResultException extends QueryEvaluationException {
private static final long serialVersionUID = 75463068807557049L;
public MultipleResultException() {
super();
}
public MultipleResultException(String msg) {
super(msg);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy