org.openbp.cockpit.modeler.figures.generic.GeometryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openbp-cockpit Show documentation
Show all versions of openbp-cockpit Show documentation
OpenBP Cockpit (graphical process modeler)
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);
}
}