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

net.dharwin.common.tools.cli.api.exceptions.CommandInitException Maven / Gradle / Ivy

The newest version!
package net.dharwin.common.tools.cli.api.exceptions;

public class CommandInitException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = 6370335834989940601L;
	
	private String _commandName;
	
	public CommandInitException(String commandName) {
		_commandName = commandName;
	}
	
	public String getCommandName() {
		return _commandName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy