
hudson.util.NoHomeDir Maven / Gradle / Ivy
package hudson.util;
import java.io.File;
/**
* Model object used to display the error top page if
* we couldn't create the home directory.
*
*
* index.jelly would display a nice friendly error page.
*
* @author Kohsuke Kawaguchi
*/
public class NoHomeDir extends ErrorObject {
public final File home;
public NoHomeDir(File home) {
this.home = home;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy