com.alachisoft.ncache.activate.cmdline.Activate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-activate Show documentation
Show all versions of nc-activate Show documentation
internal package of Alachisoft.
/*
* 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