Interface ThrowTree

All Superinterfaces:
StatementTree, Tree
public interface ThrowTree
extends StatementTree

A tree node for a throw statement. For example:

throw expression;

Since:
1.6

Nested Classes

Nested classes/interfaces declared in interface com.sun.source.tree.Tree

Tree.Kind

Methods

Modifier and Type Method Description
ExpressionTree getExpression()

Returns the expression to be thrown.

Methods declared in interface com.sun.source.tree.Tree

accept, getKind

Methods

getExpression

ExpressionTree getExpression()

Returns the expression to be thrown.

Returns:
the expression