IllegalMonitorStateExceptionNameIllegalMonitorStateExceptionSynopsis
DescriptionAn IllegalMonitorStateException is thrown when an object's wait(), notify(), or notifyAll() method is called from a thread that does not own the object's monitor. Class Summary
public class java.lang.IllegalMonitorStateException
extends java.lang.RuntimeException {
// Constructors
public IllegalMonitorStateException();
public IllegalMonitorStateException(String s);
}
ConstructorsIllegalMonitorStateExceptionpublic IllegalMonitorStateException()
public IllegalMonitorStateException(String s)
Inherited Methods
See AlsoException, Object, RuntimeException, Throwable |
|