//create try statements...
for(CodeExceptionGen ceg : exceptions) {
InstructionHandle min = (ceg.getStartPC());
InstructionHandle max = (ceg.getEndPC());
InstructionRange tryRange = new InstructionRange();
tryRange.setStart(min);
tryRange.setEnd(max);
//SKIP THE FINALLY
if(ceg.getCatchType() == null) {
continue;
}