propertynotwritableexception.java
来自「java属性邦定的(JSR-295)的一个实现」· Java 代码 · 共 64 行
JAVA
64 行
/*
* Copyright (C) 2007 Sun Microsystems, Inc. All rights reserved. Use is
* subject to license terms.
*/
package org.jdesktop.el;
/**
* Thrown when a property could not be written to while setting the
* value on a {@link ValueExpression}.
*
* <p>For example, this could be triggered by trying to set a map value
* on an unmodifiable map.</p>
*
* @since JSP 2.1
*/
public class PropertyNotWritableException extends ELException {
//-------------------------------------
/**
* Creates a <code>PropertyNotWritableException</code> with no detail
* message.
*/
public PropertyNotWritableException() {
super ();
}
//-------------------------------------
/**
* Creates a <code>PropertyNotWritableException</code> with the
* provided detail message.
*
* @param pMessage the detail message
*/
public PropertyNotWritableException(String pMessage) {
super (pMessage);
}
//-------------------------------------
/**
* Creates a <code>PropertyNotWritableException</code> with the given root
* cause.
*
* @param exception the originating cause of this exception
*/
public PropertyNotWritableException(Throwable exception) {
super (exception);
}
//-------------------------------------
/**
* Creates a <code>PropertyNotWritableException</code> with the given
* detail message and root cause.
*
* @param pMessage the detail message
* @param pRootCause the originating cause of this exception
*/
public PropertyNotWritableException(String pMessage, Throwable pRootCause) {
super (pMessage, pRootCause);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?