EnvironmentStackUnderflowException.java

/*
 * Copyright © 2016-2025 The CTAN Team and individual authors
 *
 * This file is distributed under the 3-clause BSD license.
 * See file LICENSE for details.
 */
package minitex;

import java.io.IOException;

/**
 * This exception signals that a stack underflow condition has been encountered.
 *
 * @author <a href="gene@ctan.org">Gerd Neugebauer</a>
 */
public class EnvironmentStackUnderflowException extends IOException {

    /**
     * The field <code>serialVersionUID</code> contains the version number for
     * serialization.
     */
    private static final long serialVersionUID = 1L;

    /**
     * This is the constructor for <code>UnbalancedBraces</code>.
     */
    public EnvironmentStackUnderflowException() {

        super("environment stack underflow");
    }

}