package matrix; // Exception thrown when a homogenous Vector (Vector2Dh or // Vector3Dh) cannot be homogenized because the homogenized // point would be at inifinity; public class PointAtInfinity extends Exception { public Vector vector; public PointAtInfinity(Vector v) { vector = v; //{{INIT_CONTROLS //}} } //{{DECLARE_CONTROLS //}} }