java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.WrongThreadException
- All Implemented Interfaces:
- Serializable
Thrown to indicate that a method has been called on the wrong thread.
- Since:
- 19
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a WrongThreadException with no detail message.Constructs a WrongThreadException with the given detail message.WrongThreadException(String message, Throwable cause) Constructs a WrongThreadException with the given detail message and cause.WrongThreadException(Throwable cause) Constructs a WrongThreadException with the given cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).
- 
Method SummaryMethods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
WrongThreadExceptionpublic WrongThreadException()Constructs a WrongThreadException with no detail message.
- 
WrongThreadExceptionConstructs a WrongThreadException with the given detail message.- Parameters:
- s- the String that contains a detailed message, can be null
 
- 
WrongThreadExceptionConstructs a WrongThreadException with the given detail message and cause.- Parameters:
- message- the detail message, can be null
- cause- the cause, can be null
 
- 
WrongThreadExceptionConstructs a WrongThreadException with the given cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).- Parameters:
- cause- the cause, can be null
 
 
-