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

uriSchemeHandler.CommandResult Maven / Gradle / Ivy

The newest version!
package uriSchemeHandler;

public class CommandResult {

	private final String result;
	private final String error;

	public CommandResult(final String result, final String error) {
		this.result = result;
		this.error = error;
	}

	public String getResult() {
		return result;
	}

	public String getError() {
		return error;
	}
	
	public boolean anyErrorOccured(){
		return error.length() > 0;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy