import javafx.application.Application;
import javafx.stage.Stage;

public class QuantumNoClassDefFound extends Application {
    @Override
    public void start(Stage stage) throws Exception {
        throw new Exception();
    }
    public static void main(String[] args) {
        launch(args);
    }
}
