/hudson-core/src/main/java/hudson/util/IncompatibleAntVersionDetected.java

http://github.com/hudson/hudson · Java · 50 lines · 13 code · 5 blank · 32 comment · 0 complexity · c9f87b4e9fd14cbdba6d8fda4ec9b268 MD5 · raw file

  1. /*
  2. * The MIT License
  3. *
  4. * Copyright (c) 2004-2009, Sun Microsystems, Inc., Kohsuke Kawaguchi
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. */
  24. package hudson.util;
  25. import hudson.remoting.Which;
  26. import java.io.IOException;
  27. import java.net.URL;
  28. /**
  29. * Model object used to display the error top page if
  30. * we find out that the container is picking up its own Ant and that's not 1.7.
  31. *
  32. * <p>
  33. * <tt>index.jelly</tt> would display a nice friendly error page.
  34. *
  35. * @author Kohsuke Kawaguchi
  36. */
  37. public class IncompatibleAntVersionDetected extends ErrorObject {
  38. private final Class antClass;
  39. public IncompatibleAntVersionDetected(Class antClass) {
  40. this.antClass = antClass;
  41. }
  42. public URL getWhereAntIsLoaded() throws IOException {
  43. return Which.jarURL(antClass);
  44. }
  45. }