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

com.giants.xmlmapping.exception.XmlDataException Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package com.giants.xmlmapping.exception;

/**
 * @author vencent.lu
 *
 */
public abstract class XmlDataException extends Exception {

	private static final long serialVersionUID = 564806345086798145L;
	
	private String entityName;

	/**
	 * @param message
	 * @param entityName
	 */
	public XmlDataException(String entityName,String message) {
		super(message);
		this.entityName = entityName;
	}

	public String getEntityName() {
		return entityName;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy