Back to project page Tvdb-Api-Android.
The source code is released under:
Apache License
If you think the Android project Tvdb-Api-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sburba.tvdbapi.xml; //from w ww . j a v a 2s . c o m public class XmlException extends Exception { public XmlException(String message) { super(message); } public XmlException(String message, Throwable throwable) { super(message, throwable); } }