blob: 94d6b870b380fc7b8b4588a1d1698e5c04179b01 [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.internal.httpproxy.core;
import java.io.IOException;
public class HTTPConnectionException extends IOException {
private static final long serialVersionUID = 6151717323077488641L;
public HTTPConnectionException(String message) {
super(message);
}
}