Module org.jeometry.algorithm
Class DelaunayException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jeometry.geom3D.algorithm.delaunay.clarkson.DelaunayException
- All Implemented Interfaces:
Serializable
public class DelaunayException extends Exception
A exception that can be raised during Delaunay triangulation computation.
- Since:
- 1.0.0
- Author:
- Julien Seinturier - (c) 2016 - JOrigin project - http:/www.jorigin.org
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description DelaunayException()Create a default Delaunay triangulation computation exception.DelaunayException(String message)Create a Delaunay triangulation computation exception with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DelaunayException
public DelaunayException()Create a default Delaunay triangulation computation exception. -
DelaunayException
Create a Delaunay triangulation computation exception with the given message.- Parameters:
message- the message to send.
-