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

org.javabuilders.MultipleRootsException Maven / Gradle / Ivy

The newest version!
package org.javabuilders;

@SuppressWarnings("serial")
public class MultipleRootsException extends BuildException {

	/**
	 * Constructor
	 * @param rootCount Number of root objects
	 */
	public MultipleRootsException(int rootCount) {
		super("Expected 1 root object, but encountered " + rootCount);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy