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

esendex.sdk.java.parser.InvalidXmlException Maven / Gradle / Ivy

Go to download

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy