com.ibm.websphere.workarea

Class PropertyReadOnly

  1. java.lang.Object
  2. extended byjava.lang.Throwable
  3. extended byjava.lang.Exception
  4. extended bycom.ibm.websphere.exception.DistributedException
  5. extended bycom.ibm.websphere.workarea.WorkAreaException
  6. extended bycom.ibm.websphere.workarea.PropertyReadOnly
All implemented interfaces:
DistributedExceptionEnabled, java.io.Serializable

  1. public class PropertyReadOnly
  2. extends WorkAreaException
A PropertyReadOnly exception indicates that an attempt was made to override or overwrite a property that was set as read_only. For example, the following will throw a PropertyReadOnly exception:
     userWorkArea.begin("parent");
     userWorkArea.set("key", "value", PropertyModeType.read_only);
     userWorkArea.set("key", "value");
     
Likewise, the following sequence of operations is not permitted:
     userWorkArea.begin("parent");
     userWorkArea.set("key", "value", PropertyModeType.read_only);
     userWorkArea.begin("child");
     userWorkArea.set("key", "value");
     
Version:
1.0
See Also:
Serialized Form

Constructor Summary

Constructor and Description
PropertyReadOnly()
PropertyReadOnly(java.lang.String s)

Method Summary

Methods inherited from class com.ibm.websphere.exception.DistributedException
getException, getExceptionInfo, getMessage, getOriginalException, getPreviousException, printStackTrace, printStackTrace, printStackTrace, printSuperStackTrace, printSuperStackTrace, setDefaultMessage, setLocalizationInfo
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

PropertyReadOnly

  1. public PropertyReadOnly()

PropertyReadOnly

  1. public PropertyReadOnly(java.lang.String s)