You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Constructs a new exception with null as its detail message.
public 1-params constructor constructor(message: JString)
Constructs a new exception with the specified detail message.
public 2-params constructor constructor(message: JString, cause: JThrowable)
Constructs a new exception with the specified detail message and cause.
public 1-params constructor constructor(cause: JThrowable)
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
Implement class
JException
, porting of the Java classjava.lang.Exception
.Expected Behavior
extends
JThrowable
classimplements
JSerializable
interfacepublic 0-params constructor
constructor()
constructor(message: JString)
constructor(message: JString, cause: JThrowable)
constructor(cause: JThrowable)
constructor(message: JString, cause: JThrowable, enableSuppression: Jboolean, writableStackTrace: Jboolean)
The text was updated successfully, but these errors were encountered: