Back to project page mobile-connector-sdk-android.
The source code is released under:
Apache License
If you think the Android project mobile-connector-sdk-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.silverpop.engage.exception; //from w ww . ja va 2 s .c om /** * Created by jeremydyer on 5/23/14. */ public class XMLResponseParseException extends Exception { private String xml; private String keyPath; public XMLResponseParseException(String message, String xml, String keyPath) { super(message); setXml(xml); setKeyPath(keyPath); } public String getXml() { return xml; } public void setXml(String xml) { this.xml = xml; } public String getKeyPath() { return keyPath; } public void setKeyPath(String keyPath) { this.keyPath = keyPath; } }