1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package net.jbeans.j3d.data;
24
25 /* ------------------ Import classes (packages) ------------------- *//package-summary/html">class="comment"> ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment">/* ------------------ Import classes (packages) ------------------- *//package-summary.html">class="comment"> ------------------ Import classes (packages) ------------------- */
26
27
28
29
30
31 /***
32 * This exception is thrown when an invalid range of the scalar value
33 * is specified.
34 *
35 * @version $Revision: 1.3 $
36 * @author Masahiro Takatsuka (masa@jbeans.net)
37 * @see RuntimeException
38 */
39
40 public class InvalidDataRangeException extends RuntimeException {
41 /***
42 * Constructs a InvalidDataRangeException.
43 */
44 public InvalidDataRangeException() { super(); }
45
46 /***
47 * Constructs a InvalidDataRangeException with the specified,
48 * detailed message.
49 */
50 public InvalidDataRangeException(String s) { super(s); }
51 }
52