w3c.css.util.InterruptedGetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cssvalidator Show documentation
Show all versions of cssvalidator Show documentation
Backend for the W3C CSS Validation Service
// 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