summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/util/DownloadError.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/de/podfetcher/util/DownloadError.java')
-rw-r--r--src/de/podfetcher/util/DownloadError.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/de/podfetcher/util/DownloadError.java b/src/de/podfetcher/util/DownloadError.java
new file mode 100644
index 000000000..d808d2ac2
--- /dev/null
+++ b/src/de/podfetcher/util/DownloadError.java
@@ -0,0 +1,28 @@
+package de.podfetcher.util;
+
+import de.podfetcher.R;
+import android.app.DownloadManager;
+import android.content.Context;
+
+/** Utility class for Download Errors. */
+public class DownloadError {
+ /** Get a human-readable string for a specific error code. */
+ public static String getErrorString(Context context, int code) {
+ int resId;
+ switch(code) {
+ case DownloadManager.ERROR_DEVICE_NOT_FOUND:
+ resId = R.string.download_error_insufficient_space;
+ break;
+ case DownloadManager.ERROR_FILE_ERROR:
+ resId = R.string.download_error_file_error;
+ break;
+ case DownloadManager.ERROR_HTTP_DATA_ERROR:
+ resId = R.string.download_error_http_data_error;
+ break;
+ default:
+ resId = R.string.download_error_error_unknown;
+ }
+ return context.getString(resId);
+ }
+
+}