org.exparity.data.xml.MarshallFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exparity-data Show documentation
Show all versions of exparity-data Show documentation
Data scraping and manipulation utilities for Java
The newest version!
/*
*
*/
package org.exparity.data.xml;
/**
* @author Stewart Bissett
*/
public class MarshallFailedException extends Exception {
private static final long serialVersionUID = 1L;
public MarshallFailedException(final Exception e) {
super(e);
}
}