/******************************************************************************* * * Copyright (c) 2004-2009 Oracle Corporation. * * 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: * * Kohsuke Kawaguchi * * *******************************************************************************/ package hudson.util; import hudson.remoting.Which; import java.io.IOException; import java.net.URL; /** * Model object used to display the error top page if we find out that the * container is picking up its own Ant and that's not 1.7. * * <p> <tt>index.jelly</tt> would display a nice friendly error page. * * @author Kohsuke Kawaguchi */ public class IncompatibleAntVersionDetected extends ErrorObject { private final Class antClass; public IncompatibleAntVersionDetected(Class antClass) { this.antClass = antClass; } public URL getWhereAntIsLoaded() throws IOException { return Which.jarURL(antClass); } }