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

bayern.steinbrecher.screens.ScreenSwitchFailedException Maven / Gradle / Ivy

Go to download

An abstract structure for JavaFX based applications for handling dialogs and switching between them.

There is a newer version: 0.2.4
Show newest version
package bayern.steinbrecher.screens;

public class ScreenSwitchFailedException extends Exception {
    public ScreenSwitchFailedException() {
    }

    public ScreenSwitchFailedException(String message) {
        super(message);
    }

    public ScreenSwitchFailedException(String message, Throwable cause) {
        super(message, cause);
    }

    public ScreenSwitchFailedException(Throwable cause) {
        super(cause);
    }

    public ScreenSwitchFailedException(String message, Throwable cause, boolean enableSuppression,
                                       boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy