Back to project page android-simpl3r.
The source code is released under:
Apache License
If you think the Android project android-simpl3r 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.readystatesoftware.simpl3r; // w w w . j a v a 2 s . co m public class UploadIterruptedException extends RuntimeException { private static final long serialVersionUID = 1L; public UploadIterruptedException() { super(); } public UploadIterruptedException(String message) { super(message); } public UploadIterruptedException(String message, Throwable cause) { super(message, cause); } public UploadIterruptedException(Throwable cause) { super(cause); } }