oracle.owb.foundation
Class ReadOnlyException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--oracle.owb.foundation.ReadOnlyException
All Implemented Interfaces:
java.io.Serializable

public class ReadOnlyException
extends java.lang.RuntimeException

ReadOnlyException is an runtime exception that is thrown whenever an attempt is made to modify a read-only object. The object may be inherently read-only (like the functions in Oracle Library) or may become read-only as a result of some actions (like failure to obtain the lock in a multi-user session).

See Also:
Serialized Form

Constructor Summary
ReadOnlyException()
          Constructs a ReadOnlyException with no detail message.
ReadOnlyException(java.lang.String s)
          Constructs a ReadOnlyException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ReadOnlyException

public ReadOnlyException()
Constructs a ReadOnlyException with no detail message.

ReadOnlyException

public ReadOnlyException(java.lang.String s)
Constructs a ReadOnlyException with the specified detail message.
Parameters:
s - the detail message.