# Interface: com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICThrow

C AST interface to represent throw statements. 

 Example:  

```

 throw something;
 
```

## Method: getExpression
- return type: `com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression`

Description: Get the thrown expression.
return: the thrown expression, non null

## Method: setExpression
- parameter: `e`, type: `com.pnfsoftware.jeb.core.units.code.asm.decompiler.ast.ICExpression`

Description: Set the thrown expression.
parameter: e: mandatory thrown expression

