oracle.jbo
Class  ReadOnlyAttrException
java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--oracle.jbo.JboException
                          |
                          +--oracle.jbo.ValidationException
                                |
                                +--oracle.jbo.AttrValException
                                      |
                                      +--oracle.jbo.ReadOnlyAttrException
- public class ReadOnlyAttrException- extends AttrValException
Indicates an attempt to modify a read-only attribute.
 This class may be extended to provide localizable exceptions to
 arbitrary bundle classes.
- Since: 
- JDeveloper 3.0
- See Also: 
- Serialized Form
| Constructor Summary | 
| ReadOnlyAttrException(int objType,
                      java.lang.Class resBundleClass,
                      java.lang.String errorCode,
                      java.lang.String objName,
                      java.lang.String attrName)Creates a localizable exception for an object.
 | 
| ReadOnlyAttrException(int objType,
                      java.lang.String msg,
                      java.lang.String errorCode,
                      java.lang.String objName,
                      java.lang.String attrName)Creates a non-localizable exception for an object.
 | 
 
 
 
| Methods inherited from class oracle.jbo.JboException | 
| addToDetails, 
getBaseMessage, 
getDetailMessage, 
getDetails, 
getErrorCode, 
getErrorParameters, 
getJboExceptionHelper, 
getLocalizedBaseMessage, 
getLocalizedMessage, 
getMessage, 
getProductCode, 
getResourceClass, 
getResourceName, 
getTypeNameFromId, 
isLocalizable, 
printStackTrace, 
printStackTrace, 
printStackTrace, 
setApplicationModule, 
setDetails, 
setErrorParameters | 
 
| Methods inherited from class java.lang.Throwable | 
| fillInStackTrace, 
getLocalizedMessage, 
toString | 
 
| Methods inherited from class java.lang.Object | 
| clone, 
equals, 
finalize, 
getClass, 
hashCode, 
notify, 
notifyAll, 
wait, 
wait, 
wait | 
 
ReadOnlyAttrException
public ReadOnlyAttrException(int objType,
                             java.lang.Class resBundleClass,
                             java.lang.String errorCode,
                             java.lang.String objName,
                             java.lang.String attrName)
- Creates a localizable exception for an object.
 Message parameters can also be accessed through 'get' methods.- 
- Parameters:
- objType- the type of the object, the first message parameter.
- resBundleClass- a resource bundle.
- errorCode- an error or message code.
- objName- the name of the object, the second message parameter.
- attrName- the name of the attribute, the third message parameter.
 
ReadOnlyAttrException
public ReadOnlyAttrException(int objType,
                             java.lang.String msg,
                             java.lang.String errorCode,
                             java.lang.String objName,
                             java.lang.String attrName)
- Creates a non-localizable exception for an object.
 Message parameters can also be accessed through 'get' methods.- 
- Parameters:
- objType- the type of the object, the first message parameter.
- msg- non-localizable text.
- errorCode- an error or message code.
- objName- the name of the object, the second message parameter.
- attrName- the name of the attribute, the third message parameter.