<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * @(#)EmptyStackException.java	1.17 00/02/02
 *
 * Copyright 1994-2000 Sun Microsystems, Inc. All Rights Reserved.
 * 
 * This software is the proprietary information of Sun Microsystems, Inc.  
 * Use is subject to license terms.
 * 
 */

package java.util;

/**
 * Thrown by methods in the &lt;code&gt;Stack&lt;/code&gt; class to indicate 
 * that the stack is empty. 
 *
 * @author  Jonathan Payne
 * @version 1.17, 02/02/00
 * @see     java.util.Stack
 * @since   JDK1.0
 */
public
class EmptyStackException extends RuntimeException {
    /**
     * Constructs a new &lt;code&gt;EmptyStackException&lt;/code&gt; with &lt;tt&gt;null&lt;/tt&gt; 
     * as its error message string.
     */
    public EmptyStackException() {
    }
}
</pre></body></html>