1 30 31 package org.apache.commons.httpclient; 32 33 import java.io.IOException ; 34 35 import org.apache.commons.httpclient.util.ExceptionUtil; 36 37 46 public class NoHttpResponseException extends IOException { 47 48 51 public NoHttpResponseException() { 52 super(); 53 } 54 55 60 public NoHttpResponseException(String message) { 61 super(message); 62 } 63 64 73 public NoHttpResponseException(String message, Throwable cause) { 74 super(message); 75 ExceptionUtil.initCause(this, cause); 77 } 78 } 79 | Popular Tags |