App Engine Python SDK version 1.7.4 (2)
[gae.git] / java / src / main / com / google / appengine / api / blobstore / RangeFormatException.java
blobbdbcf657e7c0bb644b945ff676f3b6f8098ea7a9
1 // Copyright 2010 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.blobstore;
5 /**
6 * {@code RangeFormatException} is an unchecked exception that is thrown
7 * when an invalid Range header format is provided.
9 */
10 public class RangeFormatException extends RuntimeException {
11 public RangeFormatException(String message) {
12 super(message);
15 public RangeFormatException(String message, Throwable cause) {
16 super(message, cause);