英文:
How to test unhandled exception?
问题
我有一个 Android 应用程序,我想将未处理的异常保存到 Sqlite 数据库中。我已经创建了将错误消息保存到数据库的所有功能。
我的问题是,我如何抛出未处理的异常?
当我尝试执行 throw new Exception("Save me intodb") 时,这不起作用,因为我被迫用 try catch 包围它。
有任何想法如何实际终止我的 Android 应用程序?
英文:
I have an Android app for which I would like to save an unhandled exception into the Sqlite DB. I have created all the functionality for saving Error messages into the DB.
My question is, how do I throw unhandled exception?
When I try to do throw new Exception("Save me intodb"), this doesn't work, because I am forced to surround it with try catch.
Any idea how can I actually kill my Android app?
答案1
得分: 0
@Joop Eggen在评论中的回答是正确的:
"运行时异常应该这样做;抛出一个IllegalStateException();"
英文:
Answer from @Joop Eggen in the comments is correct
"Runtime exceptions should do; throw new IllegalStateException();"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论