View Javadoc

1   /* -------------------------------------------------------------------
2    * Java source file for the class InvalidDataRangeException
3    * 
4    * Copyright (c), 2003, Masahiro Takatsuka.
5    * All Rights Researved.
6    * 
7    * Original Author: Masahiro Takatsuka (masa@jbeans.net)
8    * $Author: takatsukam $
9    * 
10   * $Date: 2004/03/03 11:53:05 $
11   * 
12   * $Id: InvalidDataRangeException.java,v 1.3 2004/03/03 11:53:05 takatsukam Exp $
13   * 
14   * Reference:		Document no:
15   * ___				___
16   * 
17   * To Do:
18   * ___
19   * 
20  ------------------------------------------------------------------- */
21  
22  /* --------------------------- Package ---------------------------- */
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  // import foo.*;
27  
28  /*====================================================================
29            Implementation of class InvalidDataRangeException           
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