Slide 6
Slide 6 text
DO NOT catch Errors!
• Error is considered an unrecoverable exception, and when it is thrown, apps
should be terminated immediately.
• Errors may be thrown from almost anywhere. (e.g. OutOfMemoryError)
• If the app catches an Error and continues processing, the behavior of the
app becomes unpredictable and can cause more serious problems.