All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.invictum.panels.builder.AssemblePanelException Maven / Gradle / Ivy

The newest version!
package com.github.invictum.panels.builder;

import com.github.invictum.panels.AbstractPanel;

public class AssemblePanelException extends RuntimeException {

    public AssemblePanelException(Class panelClass) {
        String message = String.format("Failed to init %s panel", panelClass.getSimpleName());
        throw new RuntimeException(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy