bayern.steinbrecher.screens.ScreenSwitchFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ScreenSwitcher Show documentation
Show all versions of ScreenSwitcher Show documentation
An abstract structure for JavaFX based applications for handling dialogs and switching between them.
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);
}
}