public class NotARotationScaleMatrixException
extends java.lang.RuntimeException
RuntimeException dedicated to operations expecting a rotation-scale matrix.| Constructor and Description | 
|---|
NotARotationScaleMatrixException()
Constructs an  
NotARotationScaleMatrixException with no detail message. | 
NotARotationScaleMatrixException(double m00,
                                double m01,
                                double m02,
                                double m10,
                                double m11,
                                double m12,
                                double m20,
                                double m21,
                                double m22)
Constructs an  
NotARotationScaleMatrixException with a default detail message
 outputting the given matrix coefficients. | 
NotARotationScaleMatrixException(Matrix3DReadOnly matrix)
Constructs an  
NotARotationScaleMatrixException with a default detail message
 outputting the given matrix coefficients. | 
NotARotationScaleMatrixException(java.lang.String message)
Constructs an  
NotARotationScaleMatrixException with the specified detail message. | 
public NotARotationScaleMatrixException()
NotARotationScaleMatrixException with no detail message.public NotARotationScaleMatrixException(java.lang.String message)
NotARotationScaleMatrixException with the specified detail message.message - the detail message.public NotARotationScaleMatrixException(Matrix3DReadOnly matrix)
NotARotationScaleMatrixException with a default detail message
 outputting the given matrix coefficients.matrix - the matrix to be displayed in the detail message. Not modified.public NotARotationScaleMatrixException(double m00,
                                        double m01,
                                        double m02,
                                        double m10,
                                        double m11,
                                        double m12,
                                        double m20,
                                        double m21,
                                        double m22)
NotARotationScaleMatrixException with a default detail message
 outputting the given matrix coefficients.m00 - the 1st row 1st column coefficient of the matrix to be displayed in the detail
           message.m01 - the 1st row 2nd column coefficient of the matrix to be displayed in the detail
           message.m02 - the 1st row 3rd column coefficient of the matrix to be displayed in the detail
           message.m10 - the 2nd row 1st column coefficient of the matrix to be displayed in the detail
           message.m11 - the 2nd row 2nd column coefficient of the matrix to be displayed in the detail
           message.m12 - the 2nd row 3rd column coefficient of the matrix to be displayed in the detail
           message.m20 - the 3rd row 1st column coefficient of the matrix to be displayed in the detail
           message.m21 - the 3rd row 2nd column coefficient of the matrix to be displayed in the detail
           message.m22 - the 3rd row 3rd column coefficient of the matrix to be displayed in the detail
           message.