Package Summary  Overview Summary

class:WrongThreadException [NONE]

All Implemented Interfaces:
Serializable

public final class WrongThreadExceptionextends RuntimeException
Thrown to indicate that a method has been called on the wrong thread.
Since:
19
See Also:

constructor:WrongThreadException() [NONE]

  • WrongThreadException

    public WrongThreadException()
    Constructs a WrongThreadException with no detail message.
  • constructor:WrongThreadException(java.lang.String) [NONE]

    WrongThreadException

    public WrongThreadException (String s)
    Constructs a WrongThreadException with the given detail message.
    Parameters:
    s - the String that contains a detailed message, can be null

    constructor:WrongThreadException(java.lang.String,java.lang.Throwable) [NONE]

    WrongThreadException

    public WrongThreadException (String message, Throwable cause)
    Constructs a WrongThreadException with the given detail message and cause.
    Parameters:
    message - the detail message, can be null
    cause - the cause, can be null

    constructor:WrongThreadException(java.lang.Throwable) [NONE]

    WrongThreadException

    public 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 of cause).
    Parameters:
    cause - the cause, can be null

    © 2023 Oracle Corporation and/or its affiliates