Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / search / ListIndexesException.java
blob2ddf3d2a5b32023413b8cb062118ddd85567529e
1 // Copyright 2011 Google Inc. All rights reserved.
2 package com.google.appengine.api.search;
4 /**
5 * Thrown to indicate that a search service failure occurred while listing
6 * indexes.
8 */
9 public class ListIndexesException extends SearchBaseException {
10 private static final long serialVersionUID = 3608247775865189592L;
12 /**
13 * Constructs an exception when some error occurred in
14 * the search service when listing indexes.
16 * @param operationResult the error code and message detail associated with
17 * the failure
19 public ListIndexesException(OperationResult operationResult) {
20 super(operationResult);