App Engine Python SDK version 1.7.4 (2)
[gae.git] / java / src / main / com / google / appengine / api / blobstore / BlobstoreFailureException.java
blob74f6b0b6ec81d23e8bbdc9ff66fd4ea624279c2b
1 // Copyright 2009 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.blobstore;
5 /**
6 * {@code BlobstoreFailureException} is an unchecked exception that is thrown
7 * for any unexpected error that occurs while communicating with the
8 * blobstore.
11 public class BlobstoreFailureException extends RuntimeException {
12 public BlobstoreFailureException(String message) {
13 super(message);
16 public BlobstoreFailureException(String message, Throwable cause) {
17 super(message, cause);