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
| Fields inherited from class java.lang.Throwable |
|
| Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
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?