Back to project page whoisit-android.
The source code is released under:
MIT License
If you think the Android project whoisit-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 com.mitchbarry.android.whoisit.ui; //from w w w. j av a 2 s . c o m import android.content.Context; import android.util.Log; import com.mitchbarry.android.whoisit.util.Ln; /** * Loader that support throwing an exception when loading in the background * * @param <D> */ public abstract class ThrowableLoader<D> extends AsyncLoader<D> { private final D data; private Exception exception; /** * Create loader for context and seeded with initial data * * @param context * @param data */ public ThrowableLoader(Context context, D data) { super(context); this.data = data; } @Override public D loadInBackground() { exception = null; try { return loadData(); } catch (Exception e) { Ln.d(e, "Exception loading data"); exception = e; return data; } } /** * @return exception */ public Exception getException() { return exception; } /** * Clear the stored exception and return it * * @return exception */ public Exception clearException() { final Exception throwable = exception; exception = null; return throwable; } /** * Load data * * @return data * @throws Exception */ public abstract D loadData() throws Exception; }