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 Summary
ConstructorDescriptionConstructs 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 Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WrongThreadException
public WrongThreadException()Constructs a WrongThreadException with no detail message. -
WrongThreadException
Constructs a WrongThreadException with the given detail message.- Parameters:
s
- the String that contains a detailed message, can be null
-
WrongThreadException
Constructs a WrongThreadException with the given detail message and cause.- Parameters:
message
- the detail message, can be nullcause
- the cause, can be null
-
WrongThreadException
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
).- Parameters:
cause
- the cause, can be null
-