1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / taskqueue / QueueFailureException.java
blob5148b1ed12ae5e9844b72be925aabdc4054ad4b5
1 // Copyright 2010 Google Inc. All rights reserved.
2 package com.google.appengine.api.taskqueue;
4 /**
5 * Unspecified queue failure.
7 */
8 public class QueueFailureException extends RuntimeException {
9 public QueueFailureException(String detail) {
10 super(detail);
13 public QueueFailureException(String string, Throwable exception) {
14 super(string, exception);
17 public QueueFailureException(Throwable exception) {
18 super(exception);