Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / datastore / CommittedButStillApplyingException.java
blob057cc3012aefb14b8d6a6f0229607a0d2ee566b6
1 // Copyright 2010 Google Inc. All rights reserved.
3 package com.google.appengine.api.datastore;
5 /**
6 * {@code CommittedButStillApplyingException} is thrown when the write or
7 * transaction was committed, but some entities or index rows may not have
8 * been fully updated. Those updates should automatically be applied soon. You
9 * can roll them forward immediately by reading one of the entities inside a
10 * transaction.
13 public class CommittedButStillApplyingException extends RuntimeException {
14 public CommittedButStillApplyingException(String message) {
15 super(message);
18 public CommittedButStillApplyingException(String message, Throwable cause) {
19 super(message, cause);