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

org.openbp.cockpit.modeler.figures.generic.GeometryException Maven / Gradle / Ivy

The newest version!
package org.openbp.cockpit.modeler.figures.generic;

/**
 * Geometry exception.
 *
 * @author Heiko Erhardt
 */
public class GeometryException extends RuntimeException
{
	/**
	 * Default constructor.
	 *
	 * @param msg Exception message
	 * @param errName Name of the model object that caused the exception
	 */
	public GeometryException(String msg, String errName)
	{
		super("Error parsing the geometry information of object '" + errName + "': " + msg);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy