Android Open Source - android-simpl3r Upload Iterrupted Exception






From Project

Back to project page android-simpl3r.

License

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.

Java Source Code

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




Java Source Code List

com.readystatesoftware.simpl3r.UploadIterruptedException.java
com.readystatesoftware.simpl3r.Uploader.java
com.readystatesoftware.simpl3r.example.MainActivity.java
com.readystatesoftware.simpl3r.example.UploadService.java
com.readystatesoftware.simpl3r.utils.SharedPreferencesCompat.java
com.readystatesoftware.simpl3r.utils.SharedPreferencesUtils.java