org.escot
Class NotMutableException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.escot.NotMutableException
All Implemented Interfaces:
Serializable

public class NotMutableException
extends RuntimeException

Thrown to indicate an attempt to change a property that is immutable.

See Also:
Serialized Form

Constructor Summary
NotMutableException()
          Constructs a NotMutableException with no specified detail message.
NotMutableException(String s)
          Constructs a NotMutableException 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

NotMutableException

public NotMutableException()
Constructs a NotMutableException with no specified detail message.

NotMutableException

public NotMutableException(String s)
Constructs a NotMutableException with the specified detail message.
Parameters:
s - the detail message.
Since:
JDK1.0