OSDN Git Service

Modify its project name.
[nxt-jsp/etrobo-atk.git] / nxtOSEK / lejos_nxj / src / java / classes / java / util / EmptyStackException.java
1 package java.util;
2 /*
3 * $Log: EmptyStackException.java,v $
4 * Revision 1.1.1.1  2007/07/12 08:51:03  takashic
5 * Initial release in CVS
6 *
7 * Revision 1.1  2003/08/17 14:59:42  mpscholz
8 * enhanced Vector
9 * added Stack and Queue and associated exception classes
10 *
11 */
12
13 /////////////////////////////////////////////////////////
14 /**
15  * An exception thrown by some stack class methods
16  * to indicate that the stack is empty 
17  */
18 public class EmptyStackException extends RuntimeException {
19
20         ////////////////////////////////////////////
21         // constants
22         ////////////////////////////////////////////
23     
24         ////////////////////////////////////////////
25         // fields
26         ////////////////////////////////////////////
27
28         ////////////////////////////////////////////
29         // constructors
30         ////////////////////////////////////////////
31
32         ////////////////////////////////////////////
33         /**
34          * creates a new exception wit null message string
35          */
36     public EmptyStackException() {
37     } // EmptyStackException()
38
39 } // class EmptyStackException