com.tibco.bw.maven.plugin.tci.dto.TCIError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw6-maven-plugin Show documentation
Show all versions of bw6-maven-plugin Show documentation
Plugin Code for Apache Maven and TIBCO BusinessWorks™.
This is the Maven Plugin for BW6 and BWCE Build.
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