Back to project page helsinki-testbed2-android.
The source code is released under:
GNU General Public License
If you think the Android project helsinki-testbed2-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 fi.testbed2.android.task.exception; /*from www. ja va 2 s. c o m*/ import fi.testbed2.android.app.MainApplication; public class DownloadTaskException extends Exception { private static final long serialVersionUID = -1L; public DownloadTaskException(String detailMessage) { super(detailMessage); } public DownloadTaskException(int detailMessageId) { super(MainApplication.getContext().getString(detailMessageId)); } public DownloadTaskException(int detailMessageId, String extraContent) { super(MainApplication.getContext().getString(detailMessageId, extraContent)); } }