Table of Contents

Class Throwable

Namespace
Java.Lang
Assembly
MASES.JNet.dll
public class Throwable : JVMBridgeException<Throwable>, ISerializable, _Exception, IJVMBridgeCore
Inheritance
Throwable
Implements
Derived
Inherited Members

Properties

BridgeClassName

Java class name of the exception

public override string BridgeClassName { get; }

Property Value

string

Cause

Returns the cause of this throwable or null if the cause is nonexistent or unknown.

public Throwable Cause { get; }

Property Value

Throwable

LocalizedMessage

Creates a localized description of this throwable.

public string LocalizedMessage { get; }

Property Value

string

Message

Returns the detail message string of this throwable.

public string Message { get; }

Property Value

string

Methods

AddSuppressed(Throwable)

Appends the specified exception to the exceptions that were suppressed in order to deliver this exception.

public void AddSuppressed(Throwable exception)

Parameters

exception Throwable

The exception to be added to the list of suppressed exceptions

FillInStackTrace()

Fills in the execution stack trace.

public Throwable FillInStackTrace()

Returns

Throwable

A reference to this Throwable instance.