/** Copyright (c) 1996, 2009, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.*********************/package java.beans;/*** A PropertyVetoException is thrown when a proposed change to a* property represents an unacceptable value.*/publicclass PropertyVetoException extends Exception {private static final long serialVersionUID = 129596057694162164L;/*** Constructs a <code>PropertyVetoException</code> with a* detailed message.** @param mess Descriptive message* @param evt A PropertyChangeEvent describing the vetoed change.*/public PropertyVetoException(String mess, PropertyChangeEvent evt) {super(mess);this.evt = evt;}/*** Gets the vetoed <code>PropertyChangeEvent</code>.** @return A PropertyChangeEvent describing the vetoed change.*/public PropertyChangeEvent getPropertyChangeEvent() {return evt;}/*** A PropertyChangeEvent describing the vetoed change.* @serial*/private PropertyChangeEvent evt;}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。