UnmodifiableClassExceptionpublic class UnmodifiableClassException extends Exception This exception may be thrown from implementations of the method
{@link java.lang.instrument.Instrumentation#redefineClasses} when one of the
desired class redefinition operations cannot be carried out. Such a situation
may arise if a redefinition attempts to alter the members of a class or its
inheritance hierarchy. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public UnmodifiableClassException()Constructs a new instance of UnmodifiableClassException
with no explanatory message.
super();
| public UnmodifiableClassException(String s)Constructs a new instance of UnmodifiableClassException
with the supplied message, s , for explanation.
super(s);
|
|