-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
31 lines (27 loc) · 732 Bytes
/
Copy pathMain.java
File metadata and controls
31 lines (27 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import gruppeinnlevering.ApplicationUI;
/**
* The Main-class of the application. This class only holds the main()-method
* to start the application.
*
* @author gruppeprosjekt, Gruppe 33
* @version 1.0
*/
public class Main
{
/**
* The main entry for the application.
* @param args arguments provided during startup of the application
*/
public static void main(String[] args)
{
try
{
ApplicationUI appUI = new ApplicationUI();
System.out.println("\n**** Application v1.0 ****\n");
appUI.start();
}
catch (NullPointerException e){
System.out.println("Sorry error error occurred, Please call help desk +4792691204 ");
}
}
}