All Downloads are FREE. Search and download functionalities are using the official Maven repository.

w3c.css.util.InterruptedGetException Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
// InterruptedGetException.java
// $Id$
// (c) COPYRIGHT MIT, INRIA and Keio, 1999.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.css.util;

import java.io.IOException;

/**
 * Thrown when a HTTP Get is interrupted
 *
 * @author Benoit Mahe ([email protected])
 * @version $Revision$
 */
public class InterruptedGetException extends IOException {

    public long bytesTransferred = 0;
    public long bytesExpected = 0;

    public InterruptedGetException(String message) {
        super(message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy