Constructors Summary |
---|
public PropertyNotWritableException()Creates a PropertyNotWritableException with no detail
message.
super ();
|
public PropertyNotWritableException(String pMessage)Creates a PropertyNotWritableException with the
provided detail message.
super (pMessage);
|
public PropertyNotWritableException(Throwable exception)Creates a PropertyNotWritableException with the given root
cause.
super (exception);
|
public PropertyNotWritableException(String pMessage, Throwable pRootCause)Creates a PropertyNotWritableException with the given
detail message and root cause.
super (pMessage, pRootCause);
|