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

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

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

import java.text.MessageFormat;

/**
 * @author vencent.lu
 *
 */
public class XMLFileParseException extends XMLParseException {

	private static final long serialVersionUID = 5599549569823912346L;
	
	private Object xmlFile;

	/**
	 *
	 * @param xmlFile
	 * @param e
	 */
	public XMLFileParseException(Object xmlFile,Throwable e) {
		super(MessageFormat.format("Read xml document:{0} error!",
				xmlFile), e);
		this.xmlFile = xmlFile;
	}

	public Object getXmlFile() {
		return xmlFile;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy