
com.github.invictum.panels.builder.AssemblePanelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of invictum-test-core Show documentation
Show all versions of invictum-test-core Show documentation
Used as a base for automation. Based on Serenity BDD project.
The newest version!
package com.github.invictum.panels.builder;
import com.github.invictum.panels.AbstractPanel;
public class AssemblePanelException extends RuntimeException {
public AssemblePanelException(Class extends AbstractPanel> panelClass) {
String message = String.format("Failed to init %s panel", panelClass.getSimpleName());
throw new RuntimeException(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy