com.google.appengine.api.taskqueue
Class TaskAlreadyExistsException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- com.google.appengine.api.taskqueue.TaskAlreadyExistsException
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 
 public class TaskAlreadyExistsException extends java.lang.RuntimeExceptionOne or more task names already exists in the queue.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor and Description TaskAlreadyExistsException(java.lang.String detail)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.util.List<java.lang.String>getTaskNames()Returns a list of the names of the tasks that already exist, in the same order as they were given in the call to add().
 
- 
- 
- 
Constructor Detail- 
TaskAlreadyExistsExceptionpublic TaskAlreadyExistsException(java.lang.String detail) 
 
- 
 - 
Method Detail- 
getTaskNamespublic java.util.List<java.lang.String> getTaskNames() Returns a list of the names of the tasks that already exist, in the same order as they were given in the call to add(). Only some of the methods that throw aTaskAlreadyExistsExceptionwill populate this list. Otherwise it will be an empty list.
 
- 
 
-