gw.lang.parser.statements.ICatchClause Maven / Gradle / Ivy
/*
* Copyright 2014 Guidewire Software, Inc.
*/
package gw.lang.parser.statements;
import gw.lang.parser.IParsedElementWithAtLeastOneDeclaration;
import gw.lang.parser.IStatement;
import gw.lang.parser.ISymbol;
import gw.lang.reflect.IType;
public interface ICatchClause extends IStatement, IParsedElementWithAtLeastOneDeclaration
{
public IType getCatchType();
public IStatement getCatchStmt();
public ISymbol getSymbol();
}