001 package railo.transformer.bytecode.visitor; 002 003 import railo.transformer.bytecode.BytecodeContext; 004 import railo.transformer.bytecode.BytecodeException; 005 006 public interface OnFinally { 007 008 public void writeOut(BytecodeContext bc) throws BytecodeException; 009 }