Android Open Source - capturandro Capturandro Exception






From Project

Back to project page capturandro.

License

The source code is released under:

Apache License

If you think the Android project capturandro 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 no.finntech.capturandro.exception;
//  w  w  w.j  av  a 2 s . c  om
public class CapturandroException extends Exception {
    private final String message;

    public CapturandroException(String message){
        this.message = message;
    }

    public String toString(){
        return message;
    }
}




Java Source Code List

no.finntech.capturandro.Capturandro.java
no.finntech.capturandro.Config.java
no.finntech.capturandro.asynctask.DownloadPicasaImageAsyncTask.java
no.finntech.capturandro.callbacks.CapturandroCallback.java
no.finntech.capturandro.exception.CapturandroException.java
no.finntech.capturandro.sample.CapturandroSampleActivity.java
no.finntech.capturandro.util.BitmapUtil.java