Class NotRepresentableException

 1  
 2  
 3  
 4 /*
 5  * Copyright (c) 2016 Vivid Solutions.
 6  *
 7  * All rights reserved. This program and the accompanying materials
 8  * are made available under the terms of the Eclipse Public License 2.0
 9  * and Eclipse Distribution License v. 1.0 which accompanies this distribution.
10  * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v20.html
11  * and the Eclipse Distribution License is available at
12  *
13  * http://www.eclipse.org/org/documents/edl-v10.php.
14  */
15 package org.locationtech.jts.algorithm;
16  
17 /**
18  * Indicates that a {@link HCoordinate} has been computed which is
19  * not representable on the Cartesian plane.
20  *
21  * @version 1.7
22  * @see HCoordinate
23  */
24 public class NotRepresentableException extends Exception {
25  
26   public NotRepresentableException() {
27     super("Projective point not representable on the Cartesian plane.");
28   }
29  
30 }
31