Package net.algart.arrays
Class DegeneratedSimplexException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
net.algart.arrays.DegeneratedSimplexException
- All Implemented Interfaces:
Serializable
Unchecked exception thrown if the n-dimensional simplex Matrices.Simplex
cannot be constructed because all vertices lies on the same hyperplane.
In other words, it is thrown while attempt to build degenerated simplex: such simplexes are not allowed
for Matrices.Simplex
class.
- Author:
- Daniel Alievsky
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an instance of this class.DegeneratedSimplexException
(String message) Constructs an instance of this class with the specified detail 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
-
DegeneratedSimplexException
public DegeneratedSimplexException()Constructs an instance of this class. -
DegeneratedSimplexException
Constructs an instance of this class with the specified detail message.- Parameters:
message
- the detail message.
-