Java Catch Object Error -
this code below method header , body, following error: no exception of type object can thrown exception type must subclass of throwable
. i'm attempting execute block of code: catch(object object)
.
public void method15665(class435 class435, int i) { { try { try { byte[] = new byte[(int) class435.method7563(1085678935)]; int i_3_; (int i_4_ = 0; i_4_ < is.length; i_4_ += i_3_) { i_3_ = class435.method7564(is, i_4_, is.length - i_4_, (byte) -10); if (i_3_ == -1) throw new eofexception(); } class224_sub8 class224_sub8 = new class224_sub8(is); if ((class224_sub8.abytearray8535.length - class224_sub8.anint8536 * 475822179) < 1) { try { class435.method7572(-1683167102); } catch (exception exception) { /* empty */ } break; } int i_5_ = class224_sub8.method13859((short) -7287); if (i_5_ < 0 || i_5_ > 1) { try { class435.method7572(-1683167102); } catch (exception exception) { /* empty */ } break; } if ((class224_sub8.abytearray8535.length - class224_sub8.anint8536 * 475822179) < 2) { try { class435.method7572(-1683167102); } catch (exception exception) { /* empty */ } break; } int i_6_ = class224_sub8.method13737(2071056893); if ((class224_sub8.abytearray8535.length - 475822179 * class224_sub8.anint8536) < 6 * i_6_) { try { class435.method7572(-1683167102); } catch (exception exception) { /* empty */ } break; } (int i_7_ = 0; i_7_ < i_6_; i_7_++) { class323 class323 = class399.aclass195_sub2_sub1_5932 .method14614(class224_sub8, -2141543778); if ((class255.aclass255_3016 == (((class173_sub1) this).aclass255array9960 [class323.anint5015 * 1568411443])) && (class399.aclass195_sub2_sub1_5932.method14624 (class323.anint5015 * 1568411443, 82620551) .aclass350_2171.method6687 (-1035085164).aclass5162.isassignablefrom (class323.anobject5014.getclass()))) aninterface50_2149.method298((class323.anint5015 * 1568411443), class323.anobject5014, -1250481088); } } catch (exception exception) { try { class435.method7572(-1683167102); } catch (exception exception_8_) { exception = exception_8_; } break; } try { class435.method7572(-1683167102); } catch (exception exception) { /* empty */ } } catch (object object) { try { class435.method7572(-1683167102); } catch (exception exception) { /* empty */ } throw object; } } while (false); }
does know how fix this? appreciated!
replace
} catch (object object) {
with
} catch (throwable object) {
actually don't want catch throwable
, exception
, runtimeexception
or more specific class.
Comments
Post a Comment