On May 19, 9:29 pm, Bob <[email protected]> wrote: > When I debug I get dozens of these exceptions in a row. They don't > seem to effect the program flow but make debugging a nightmare. Does > anyone know what is causing this? > > Daemon System Thread [<5> HeapWorker] (Suspended (exception > IllegalStateException)) > SQLiteCursor.finalize() line: 448 > NativeStart.run() line: not available [native method]
The exception is being thrown from a finalizer, which means it will be discarded. You're breaking in the debugger because it's an uncaught exception. The log file may provide some hints as to the cause. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

