org.yestech.episodic.TransportException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yesepisodic Show documentation
Show all versions of yesepisodic Show documentation
Framework to interface with eposidic api
package org.yestech.episodic;
/**
* Occurs when there are problems with io between episodic, or problems parsing episodic content.
*
* This exception will have a root cause of either: {@link java.io.IOException}, or {@link javax.xml.bind.JAXBException}
*
*
* @author A.J. Wright
*/
public class TransportException extends RuntimeException {
public TransportException(String message, Throwable cause) {
super(message, cause);
}
}