All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alachisoft.ncache.activate.cmdline.Activate Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.alachisoft.ncache.activate.cmdline;

import com.alachisoft.ncache.ncactivate.cmdline.exceptions.CorruptInstallationException;

/**
 * @author Muneeb_Shahid
 */
public class Activate {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        try {
            new ActivateTool().Run(args);
        } catch (CorruptInstallationException cIE) {
            System.out.println(cIE.getMessage());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy