Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / urlfetch / InternalTransientException.java
blob26ccee9cb9cb007c4c9da0bf9a49afb2dfa89238
1 // Copyright 2012 Google Inc. All Rights Reserved.
2 package com.google.appengine.api.urlfetch;
4 import java.io.IOException;
6 /**
7 * {@code InternalTransientException} is thrown when
8 * a temporary error occurs in retrieving the URL.
11 public final class InternalTransientException extends IOException {
13 private static final String MESSAGE_FORMAT =
14 "A temporary internal error has occured. Please try again. URL: %s";
16 public InternalTransientException(String url) {
17 super(String.format(MESSAGE_FORMAT, url));