/** * */ package net.jsunit; import org.jdom.Document; import java.io.IOException; import java.net.URL; public class BlowingUpRemoteServerHitter implements RemoteServerHitter { public Document hitURL(URL url) throws IOException { throw new IOException(); } }