Add general ERROR to plugin result status.

This commit is contained in:
Bryce Curtis 2010-09-17 15:38:18 -05:00
parent 9d3306ccc5
commit b95ad44c18

View File

@ -63,7 +63,8 @@ public class PluginResult {
"Malformed url",
"IO error",
"Invalid action",
"JSON error"
"JSON error",
"Error"
};
public enum Status {
@ -74,6 +75,7 @@ public class PluginResult {
MALFORMED_URL_EXCEPTION,
IO_EXCEPTION,
INVALID_ACTION,
JSON_EXCEPTION
JSON_EXCEPTION,
ERROR
}
}