123730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// Copyright 2014 The Chromium Authors. All rights reserved.
223730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// Use of this source code is governed by a BSD-style license that can be
323730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)// found in the LICENSE file.
423730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
523730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)package org.chromium.net;
623730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
723730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)import java.io.IOException;
823730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)
923730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)/**
1023730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles) * Exception returned if a {@link HttpUrlRequest} attempts to download a
1123730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles) * response that exceeds the user-specified limit.
1223730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles) */
1323730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)@SuppressWarnings("serial")
1423730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)public class ResponseTooLargeException extends IOException {
1523730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)    public ResponseTooLargeException() {
1623730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)    }
1723730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)}
18