|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.springframework.core.NestedRuntimeException org.springframework.beans.BeansException org.springframework.beans.FatalBeanException org.springframework.beans.InvalidPropertyException org.springframework.beans.NotWritablePropertyException
public class NotWritablePropertyException
Exception thrown on an attempt to set the value of a property that is not writable (typically because there is no setter method).
Constructor Summary | |
---|---|
NotWritablePropertyException(Class beanClass,
String propertyName)
Create a new NotWritablePropertyException. |
|
NotWritablePropertyException(Class beanClass,
String propertyName,
String msg)
Create a new NotWritablePropertyException. |
|
NotWritablePropertyException(Class beanClass,
String propertyName,
String msg,
String[] possibleMatches)
Create a new NotWritablePropertyException. |
|
NotWritablePropertyException(Class beanClass,
String propertyName,
String msg,
Throwable cause)
Create a new NotWritablePropertyException. |
Method Summary | |
---|---|
String[] |
getPossibleMatches()
Return suggestions for actual bean property names that closely match the invalid property name, if any. |
Methods inherited from class org.springframework.beans.InvalidPropertyException |
---|
getBeanClass, getPropertyName |
Methods inherited from class org.springframework.beans.BeansException |
---|
equals, hashCode |
Methods inherited from class org.springframework.core.NestedRuntimeException |
---|
contains, getMessage, getMostSpecificCause, getRootCause |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public NotWritablePropertyException(Class beanClass, String propertyName)
beanClass
- the offending bean classpropertyName
- the offending property namepublic NotWritablePropertyException(Class beanClass, String propertyName, String msg)
beanClass
- the offending bean classpropertyName
- the offending property namemsg
- the detail messagepublic NotWritablePropertyException(Class beanClass, String propertyName, String msg, Throwable cause)
beanClass
- the offending bean classpropertyName
- the offending property namemsg
- the detail messagecause
- the root causepublic NotWritablePropertyException(Class beanClass, String propertyName, String msg, String[] possibleMatches)
beanClass
- the offending bean classpropertyName
- the offending property namemsg
- the detail messagepossibleMatches
- suggestions for actual bean property names
that closely match the invalid property nameMethod Detail |
---|
public String[] getPossibleMatches()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |