Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / datastore / DatastoreFailureException.java
blobbbf122559443ab534aef99b8519c0f3d798afff9
1 // Copyright 2007 Google Inc. All rights reserved.
3 package com.google.appengine.api.datastore;
5 /**
6 * {@code DatastoreFailureException} is thrown when any unknown
7 * error occurs while communicating with the data store.
9 * Clients should not attempt to retry after receiving this exception.
12 public class DatastoreFailureException extends RuntimeException {
13 public DatastoreFailureException(String message) {
14 super(message);
17 public DatastoreFailureException(String message, Throwable cause) {
18 super(message, cause);