net.nemerosa.ontrack.acceptance.browser.CannotBuildPageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontrack-acceptance Show documentation
Show all versions of ontrack-acceptance Show documentation
Ontrack module: ontrack-acceptance
The newest version!
package net.nemerosa.ontrack.acceptance.browser;
import net.nemerosa.ontrack.common.BaseException;
public class CannotBuildPageException extends BaseException {
public CannotBuildPageException(Class
pageClass, Exception e) {
super(e, "Cannot build page %s", pageClass);
}
}