blob: e316c2c04da867939fc32a9bde5c976375c3b3d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Hideki TAI - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.util.httpproxy.core.impl;
import java.io.IOException;
public class HTTPConnectionException extends IOException {
private static final long serialVersionUID = 6151717323077488641L;
public HTTPConnectionException(String message) {
super(message);
}
}