⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 propertyresolutionexception.java

📁 java属性邦定的(JSR-295)的一个实现
💻 JAVA
字号:
/* * Copyright (C) 2006-2007 Sun Microsystems, Inc. All rights reserved. Use is * subject to license terms. */package org.jdesktop.beansbinding;/** * {@code PropertyResolutionExceptions} can be thrown at various points in * the life cycle of a {@code Property}. Any time a {@code Property} * encounters an exception in resolving a property, a * {@code PropertyResolutionException} can be thrown. For example, if a * {@code BeanProperty} encounters an exception while trying to resolve * the "foo" property of an object via reflection, the exception is * wrapped in a {@code PropertyResolutionException} and is re-thrown. * * @author Shannon Hickey * @author Scott Violet */public class PropertyResolutionException extends RuntimeException {    /**     * Creates a {@code PropertyResolutionException} with the given message.     *     * @param message the exception's message     */    public PropertyResolutionException(String message) {        super(message);    }    /**     * Creates a {@code PropertyResolutionException} with the given message     * and cause.     *     * @param message the exception's message     * @param reason the original exception that caused this exception     *        to be thrown     */    public PropertyResolutionException(String message, Exception reason) {        super(message, reason);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -