/* 136 */ CodeAttribute ca = this.thisMethod.getCodeAttribute();
/* 137 */ ExceptionTable et = ca.getExceptionTable();
/* 138 */ int pos = this.currentPos;
/* 139 */ int n = et.size();
/* 140 */ for (int i = 0; i < n; i++)
/* 141 */ if ((et.startPc(i) <= pos) && (pos < et.endPc(i))) {
/* 142 */ int t = et.catchType(i);
/* 143 */ if (t <= 0) continue;
/* */ try {
/* 145 */ addClass(list, pool.get(cp.getClassInfo(t)));
/* */ }