Back to project page msf-spaces-sdk-android.
The source code is released under:
Apache License
If you think the Android project msf-spaces-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 de.imc.mirror.sdk.android.exceptions; //from w ww. ja v a2 s . c o m /** * Exception thrown when a request fails. * @author simon.schwantzer(at)im-c.de */ public class RequestException extends RuntimeException { private static final long serialVersionUID = 1L; public RequestException(String message, Throwable e) { super(message, e); } }