source: dispositivos_moviles/TibisayMovil/src/ve/gob/cenditel/tibisaymovil/AsyncErrorTask.java @ c14b8d2

Last change on this file since c14b8d2 was 288126d, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Manejo de repositorio de certificados y firma con pkcs7

  • Property mode set to 100644
File size: 362 bytes
Line 
1package ve.gob.cenditel.tibisaymovil;
2
3import android.os.AsyncTask;
4
5public abstract class AsyncErrorTask<Params, Progress, Result> extends AsyncTask<Params, Progress, Result> {
6
7    private Throwable error = null;
8
9    public Throwable getError() {
10        return error;
11    }
12
13    protected void setError(Throwable error) {
14        this.error = error;
15    }
16}
Note: See TracBrowser for help on using the repository browser.