
hudson.util.HudsonFailedToLoad Maven / Gradle / Ivy
package hudson.util;
import hudson.Functions;
import java.io.PrintWriter;
import java.io.StringWriter;
/**
* Model object used to display the generic error when Hudson start up fails fatally during initialization.
*
*
* index.jelly would display a nice friendly error page.
*
* @author Kohsuke Kawaguchi
*/
public class HudsonFailedToLoad extends ErrorObject {
public final Throwable exception;
public HudsonFailedToLoad(Throwable exception) {
this.exception = exception;
}
public String getStackTrace() {
return Functions.printThrowable(exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy