src.math.geom2d.UnboundedBox2DException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaGeom Show documentation
Show all versions of javaGeom Show documentation
JavaGeom - The aim of JavaGeom is to provide methods to easily perform geometric computations, such as intersections of lines, clipping of polygons, transformation shapes, perimeter and area computations...
This is a binary & source redistribution of the original, unmodified JavaGeom library originating from:
"http://sourceforge.net/projects/geom-java/files/javaGeom/javaGeom%200.11.1/".
The purpose of this redistribution is to make the library available to other Maven projects.
The newest version!
/**
*
*/
package math.geom2d;
/**
* Exception thrown when an unbounded box is involved in an operation
* that assumes a bounded box.
* @see Box2D
* @author dlegland
*/
public class UnboundedBox2DException extends RuntimeException {
private Box2D box;
/**
*
*/
private static final long serialVersionUID = 1L;
public UnboundedBox2DException(Box2D box) {
this.box = box;
}
public Box2D getBox() {
return box;
}
}