esendex.sdk.java.parser.InvalidXmlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.everit.osgi.bundles.com.esendex.javasdk Show documentation
Show all versions of org.everit.osgi.bundles.com.esendex.javasdk Show documentation
The Esendex Java SDK is an easy to use client for our REST API that you can use to integrate SMS and Voice messaging into your Java application.
The newest version!
package esendex.sdk.java.parser;
import esendex.sdk.java.EsendexException;
// TODO: Auto-generated Javadoc
/**
* Exception to indicate that data could not be treated as xml,
* probably due to not being well formed.
*
* @author Mike Whittaker
*/
public class InvalidXmlException extends EsendexException {
private static final long serialVersionUID = 20100211L;
/**
* Instantiates a new invalid xml exception.
*/
public InvalidXmlException() {
}
/**
* Instantiates a new invalid xml exception.
* @param message the message
*/
public InvalidXmlException(String message) {
super(message);
}
/**
* Instantiates a new invalid xml exception.
* @param cause the cause
*/
public InvalidXmlException(Throwable cause) {
super(cause);
}
/**
* Instantiates a new invalid xml exception.
* @param message the message
* @param cause the cause
*/
public InvalidXmlException(String message, Throwable cause) {
super(message, cause);
}
}