/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Core;
import GUI.mainForm;
import javax.swing.JOptionPane;
import javax.swing.UIManager;
/**
*
* @author Amir
*/
public class Driver {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
mainForm mainWindow = new mainForm();
mainWindow.setVisible(true);
} catch (Exception ex) {
JOptionPane.showMessageDialog(null,
"This system does not support your Operating System! Exiting now",
"WinSIS", JOptionPane.ERROR_MESSAGE);
System.exit(1);
}
}
}