Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / images / ImagesServiceFailureException.java
blobf273279f93a9522f85aef3a840dc6fa801f105bf
1 // Copyright 2009 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.images;
5 /**
6 * {@code ImagesServiceFailureException} is thrown when any unknown
7 * error occurs while communicating with the images service.
9 */
10 public class ImagesServiceFailureException extends RuntimeException {
12 static final long serialVersionUID = -3666552183703569527L;
14 /**
15 * Creates an exception with the supplied message.
16 * @param message A message describing the reason for the exception.
18 public ImagesServiceFailureException(String message) {
19 super(message);
22 public ImagesServiceFailureException(String message, Throwable cause) {
23 super(message, cause);