com.google.appengine.api.taskqueue
Class InvalidQueueModeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.google.appengine.api.taskqueue.InvalidQueueModeException
-
- All Implemented Interfaces:
- java.io.Serializable
public class InvalidQueueModeException extends java.lang.RuntimeException
Mismatch of task method and queue mode. e.g.Queue.leaseTasks(long, java.util.concurrent.TimeUnit, long)
called on a push queue,Queue.add(TaskOptions)
with methodTaskOptions.Method
PULL to a push queue, or withTaskOptions.Method
not equal to PULL to a pull queue.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor and Description InvalidQueueModeException(java.lang.String detail)
-