UnbalancedBracesException.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 unbalanced braces have been encountered.
*
* @author <a href="gene@ctan.org">Gerd Neugebauer</a>
*/
public class UnbalancedBracesException 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 UnbalancedBracesException() {
super("unbalanced braces");
}
}