Package org.djunits.vecmat
Class NonInvertibleMatrixException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.djunits.vecmat.NonInvertibleMatrixException
- All Implemented Interfaces:
Serializable
NonInvertibleMatrixException is throws on inverting a singular matrix.
Copyright (c) 2025-2026 Delft University of Technology, Jaffalaan 5, 2628 BX Delft, the Netherlands. All rights reserved. See for project information https://djunits.org. The DJUNITS project is distributed under a three-clause BSD-style license.
- Author:
- Alexander Verbraeck
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a NonInvertibleMatrixException without any explanation.NonInvertibleMatrixException(String message) Create a NonInvertibleMatrixException with a message.NonInvertibleMatrixException(String message, Throwable cause) Create a NonInvertibleMatrixException with a message and a cause.Create a NonInvertibleMatrixException with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NonInvertibleMatrixException
public NonInvertibleMatrixException()Create a NonInvertibleMatrixException without any explanation. -
NonInvertibleMatrixException
Create a NonInvertibleMatrixException with a message.- Parameters:
message- the message to include
-
NonInvertibleMatrixException
Create a NonInvertibleMatrixException with a cause.- Parameters:
cause- the cause to include
-
NonInvertibleMatrixException
Create a NonInvertibleMatrixException with a message and a cause.- Parameters:
message- the message to includecause- the cause to include
-