Class TriangulationException
- Object
-
- Throwable
-
- Exception
-
- RuntimeException
-
- TriangulationException
-
- All Implemented Interfaces:
Serializable
public class TriangulationException extends RuntimeException
Thrown when it is unable to generate TIN.- Since:
- 2.4
- Author:
- Jan Jezek
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TriangulationException()
Constructs an exception with no detail message.TriangulationException(String message)
Constructs an exception with the specified detail message.
-
Method Summary
-
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
TriangulationException
public TriangulationException(String message)
Constructs an exception with the specified detail message.- Parameters:
message
- The cause for this exception. The cause is saved for later retrieval by theThrowable.getCause()
method.
-
TriangulationException
public TriangulationException()
Constructs an exception with no detail message.
-
-