java.lang
Class IllegalMonitorStateException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--java.lang.IllegalMonitorStateException
All Implemented Interfaces:
Serializable

public class IllegalMonitorStateException
extends RuntimeException

Untamed: Thrown to indicate that a thread has attempted to wait on an object's monitor or to notify other threads waiting on an object's monitor without owning the specified monitor.

Since:
JDK1.0
Version:
1.10, 12/03/01
Author:
unascribed
See Also:
java.lang.Object#notify(), java.lang.Object#notifyAll(), java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
serialVersionUID
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
IllegalMonitorStateException()
          Enabled: Constructs an IllegalMonitorStateException with no detail message.
IllegalMonitorStateException(String s)
          Enabled: Constructs an IllegalMonitorStateException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalMonitorStateException

public IllegalMonitorStateException()
Enabled: Constructs an IllegalMonitorStateException with no detail message.


IllegalMonitorStateException

public IllegalMonitorStateException(String s)
Enabled: Constructs an IllegalMonitorStateException with the specified detail message.

Parameters:
s - the detail message.


comments?