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

com.dragome.compiler.ast.CatchClause Maven / Gradle / Ivy

There is a newer version: 0.96-beta4
Show newest version
package com.dragome.compiler.ast;

import com.dragome.compiler.generators.AbstractVisitor;

public class CatchClause extends Block
{

	private VariableDeclaration exception;

	public CatchClause(int theBeginIndex)
	{
		super(theBeginIndex);
	}

	public void visit(AbstractVisitor visitor)
	{
		visitor.visit(this);
	}

	public VariableDeclaration getException()
	{
		return exception;
	}

	public void setException(VariableDeclaration theException)
	{
		exception= theException;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy