1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / datastore / DatastoreTimeoutException.java
blob6653d08a3a958b6c362bd4b4e1054da618d25b2d
1 // Copyright 2008 Google Inc. All Rights Reserved.
2 package com.google.appengine.api.datastore;
4 /**
5 * {@code DatastoreTimeoutException} is thrown when a datastore operation
6 * times out. This can happen when you attempt to put, get, or delete
7 * too many entities or an entity with too many properties, or if the
8 * datastore is overloaded or having trouble.
11 public class DatastoreTimeoutException extends RuntimeException {
12 public DatastoreTimeoutException(String message) {
13 super(message);