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

com.arangodb.NonUniqueResultException Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
package com.arangodb;

/**
 * @author mrbatista
 */
public class NonUniqueResultException extends RuntimeException {

	/**
	 * Constructs a NonUniqueResultException.
	 *
	 * @param resultCount
	 *            The number of actual results.
	 */
	public NonUniqueResultException(int resultCount) {
		super("Query did not return a unique result: " + resultCount);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy