public class InterruptedException extends Exception
if (Thread.interrupted()) // Clears interrupted status! throw new InterruptedException();
Object.wait()
,
Object.wait(long)
,
Object.wait(long, int)
,
Thread.sleep(long)
,
Thread.interrupt()
,
Thread.interrupted()
Constructor and Description |
---|
InterruptedException()
Constructs an
InterruptedException with no detail message. |
InterruptedException(String s)
Constructs an
InterruptedException with the
specified detail message. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getSuppressed, initCause, printStackTrace, printStackTrace, toString
public InterruptedException()
InterruptedException
with no detail message.public InterruptedException(String s)
InterruptedException
with the
specified detail message.s
- the detail message.Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. Use of this specification is subject to license terms.