Re: [appengine-java] Re: DeadlineExceededException not correctly thrown during a transaction

2009-11-12 Thread Prashant
now, the error is being thrown but entities are not getting deleted -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this group, send e

[appengine-java] Re: DeadlineExceededException not correctly thrown during a transaction

2009-11-11 Thread avirads
same issue here... in my case , it did delete all the rows in the entity. but still the error persists. On Oct 28, 5:15 pm, Prashant wrote: > code snippet : > > ... > ... >            query = pm.newQuery(Link.class); >             try{ >                 count = query.deletePersistentAll();    

[appengine-java] Re: DeadlineExceededException not correctly thrown during a transaction

2009-10-28 Thread Prashant
code snippet : ... ... query = pm.newQuery(Link.class); try{ count = query.deletePersistentAll(); // getting HardDeadlineExceededError here }catch (Exception ex) {} query.closeAll(); ... ... --~--~-~--~~-

[appengine-java] Re: DeadlineExceededException not correctly thrown during a transaction

2009-10-28 Thread Prashant
facing similar problem. i tried catching the exception but it didn't work, so the tried catching *Exception* and that didn't work either. any idea what's going on??? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Go