summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/gui/Main.java
blob: 5a9209e46652b96df189ebe7ad5ec941dca612da (plain)
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
32
33
34
35
36
37
38
39
package com.c2kernel.gui;


import com.c2kernel.process.StandardClient;
import com.c2kernel.utils.Logger;


/**
 *
 * @version $Revision: 1.15 $ $Date: 2004/10/26 11:33:56 $
 * @author  $Author: abranson $
 */
public class Main extends StandardClient
{
    static public void main(String[] args)
    {
        try
        {
            standardSetUp(args);
            Logger.initConsole("GUI");
            MainFrame client = new MainFrame();
            client.showLogin();

        }
        catch( Exception ex )
        {
            Logger.error(ex);

            try
            {
                standardTearDown();
            }
            catch(Exception ex1)
            {
                Logger.error(ex1);
            }
        }
    }
}