Vladimir Dejanovic wrote:

<snip/>


the thing which I can't figure out is how it worked for several month and
then just stopped. Also why try catch block isn't working like it should ?

Your catch block is catching Exception, but the class NoClassDefFoundError extends Error which extends Throwable. Exception is a sub class of Throwable. So change your catch block to catch Throwable objects to ensure you can catch errors as well as exceptions.


I will try to find this jar and add it to app. I hope that it will fix the
problem :|


Regards,

Chris



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to