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

com.tibco.bw.maven.plugin.tci.dto.TCIError Maven / Gradle / Ivy

Go to download

Plugin Code for Apache Maven and TIBCO BusinessWorks™. This is the Maven Plugin for BW6 and BWCE Build.

There is a newer version: 2.9.9
Show newest version
package com.tibco.bw.maven.plugin.tci.dto;

public class TCIError {
	
	private String error;
	private String errorDetail;
	
	public TCIError(){
		
	}
	
	public TCIError(String error, String errorDetail) {
		super();
		this.error = error;
		this.errorDetail = errorDetail;
	}
	
	public String getError() {
		return error;
	}
	public void setError(String error) {
		this.error = error;
	}
	public String getErrorDetail() {
		return errorDetail;
	}
	public void setErrorDetail(String errorDetail) {
		this.errorDetail = errorDetail;
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy