blob: d47ef2f382c32163e3451044253b6976c2bc42f6 (
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
36
37
38
|
/*
* $RCSfile$
*
* Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision$
* $Date$
* $State$
*/
package javax.vecmath;
/**
* Indicates that an operation cannot be completed properly because
* of a mismatch in the sizes of object attributes.
*/
public class MismatchedSizeException extends RuntimeException{
/**
* Create the exception object with default values.
*/
public MismatchedSizeException(){
}
/**
* Create the exception object that outputs a message.
* @param str the message string to be output.
*/
public MismatchedSizeException(String str){
super(str);
}
}
|