Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / memcache / stdimpl / GCacheException.java
blobb1f6d0bf4a927477bade36d9d1117c752e13c2e6
1 // Copyright 2008 Google Inc. All Rights Reserved.
2 package com.google.appengine.api.memcache.stdimpl;
4 /**
5 * An exception for events where an operation could not be completed by the
6 * memcache service as requested by the GCache interface.
8 */
9 public class GCacheException extends RuntimeException {
10 public GCacheException(String message, Throwable ex) {
11 super(message, ex);
13 public GCacheException(String message) {
14 super(message);