All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.appengine.api.datastore.EntityNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
// Copyright 2007 Google Inc. All rights reserved.

package com.google.appengine.api.datastore;

/**
 * {@code EntityNotFoundException} is thrown when no {@code Entity}
 * with the specified {@code Key} could be found.
 *
 */
public class EntityNotFoundException extends Exception {
  private final Key key;

  public EntityNotFoundException(Key key) {
    super("No entity was found matching the key: " + key);
    this.key = key;
  }

  public Key getKey() {
    return key;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy