blob: 13de0cb89bea48b7cadf870cf7fa2ac1bd7851c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/*
* $RCSfile$
*
* Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision$
* $Date$
* $State$
*/
package javax.vecmath;
/**
* Indicates that inverse of a matrix can not be computed.
*/
public class SingularMatrixException extends RuntimeException{
/**
* Create the exception object with default values.
*/
public SingularMatrixException(){
}
/**
* Create the exception object that outputs message.
* @param str the message string to be output.
*/
public SingularMatrixException(String str){
super(str);
}
}
|