Class CatchClause

All Implemented Interfaces:
IParsedElement, IParsedElementWithAtLeastOneDeclaration, IStatement, ICatchClause

public final class CatchClause extends Statement implements ICatchClause
Represents a try-catch-finally-statement as specified in the Gosu grammar:
 try-catch-finally-statement
   try <statement> [ catch ( <identifier> ) <statement> ] [ finally <statement> ]
 

See Also: