package data.events; /** * Exception thrown by {@link CatalogChangeListener}s and {@link StockChangeListener}s to indicate a veto * against some operation. * * @author Steffen Zschaler * @version 2.0 19/08/1999 * @since v2.0 */ public class VetoException extends Exception { /** * Create a new VetoException. */ public VetoException() { super(); } /** * Create a new VetoException with a detail message. * * @param sDetail the detail message. */ public VetoException(String sDetail) { super (sDetail); } }