All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hisrc.jscm.codemodel.statement.JSTryStatement Maven / Gradle / Ivy

The newest version!
package org.hisrc.jscm.codemodel.statement;

import org.hisrc.jscm.codemodel.expression.JSVariable;

public interface JSTryStatement extends JSStatement {

	public JSBlock getBody();

	public JSBlock getCatch();

	public JSBlock getFinally();

	public JSVariable getException();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy