Yes, this looks like a bug. Please file it in the issue tracker:

http://code.google.com/p/googleappengine/issues/list

In the meantime, you should be able to work around it like this:

try {

} catch (Exception e) {
  if
(e.getClass().getName().equals(ResponseTooLargeException.class.getName())) {
    // ...
  }
}

- Jason

On Thu, Oct 29, 2009 at 9:47 AM, Prashant <[email protected]> wrote:

> Hi,
>
> i am fetching a set of urls using task queues, my whole url fetch code is
> between try-catch block but 
> *com.google.appengine.api.urlfetch.ResponseTooLargeException
> *error is not getting caught by catch block, task fails every time logging
> this error in log.
>
> anyone facing similar error??
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to