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

org.jaxws.util.os.SystemProcessException Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
package org.jaxws.util.os;

/**
 * 
 * @author chenjianjx
 * 
 */

public class SystemProcessException extends Exception {

	private int returnCode;
	private String consoleOutput;

	/**
	 * 
	 */
	private static final long serialVersionUID = -6904952219344675845L;

	public SystemProcessException(int returnCode, String consoleOutput) {
		super();
		this.returnCode = returnCode;
		this.consoleOutput = consoleOutput;
	}

	public int getReturnCode() {
		return returnCode;
	}

	public String getConsoleOutput() {
		return consoleOutput;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy