App Engine Python SDK version 1.7.4 (2)
[gae.git] / java / src / main / com / google / appengine / api / taskqueue / TransientFailureException.java
blob78031acbfe36d88a2c50eeeded731b18a79d09b4
1 // Copyright 2010 Google Inc. All rights reserved.
2 package com.google.appengine.api.taskqueue;
4 /**
5 * Intermittent failure.
6 * <p>The requested operation may succeed if attempted again.
8 */
9 public class TransientFailureException extends RuntimeException {
10 public TransientFailureException(String detail) {
11 super(detail);