将支付相关的异常抛出,改为异常输出

This commit is contained in:
Martin
2024-07-09 11:11:05 +08:00
parent 9c38f40098
commit eb9f615f70
5 changed files with 31 additions and 27 deletions

View File

@@ -136,14 +136,14 @@ public class MyWalletActivity extends AbsActivity {
}
});
} catch (JSONException e) {
throw new RuntimeException(e);
e.printStackTrace();
}
}
});
}
}
} catch (JSONException e) {
throw new RuntimeException(e);
e.printStackTrace();
}
}
});
@@ -491,7 +491,7 @@ public class MyWalletActivity extends AbsActivity {
} catch (JSONException e) {
throw new RuntimeException(e);
e.printStackTrace();
}
}