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

org.sklsft.commons.log.ErrorLogMessage Maven / Gradle / Ivy

There is a newer version: 5.0.0-M1
Show newest version
package org.sklsft.commons.log;

import java.io.Serializable;

public class ErrorLogMessage implements Serializable {

	private static final long serialVersionUID = 1L;
	
	/*
	 * properties
	 */
	private String errorStatus;
	private String errorLabel;
	private String errorTrace;
	
	
	/*
	 * getters and setters
	 */
	public String getErrorStatus() {
		return errorStatus;
	}
	public void setErrorStatus(String errorStatus) {
		this.errorStatus = errorStatus;
	}
	public String getErrorLabel() {
		return errorLabel;
	}
	public void setErrorLabel(String errorLabel) {
		this.errorLabel = errorLabel;
	}
	public String getErrorTrace() {
		return errorTrace;
	}
	public void setErrorTrace(String errorTrace) {
		this.errorTrace = errorTrace;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy