Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Sawicki2011-09-11 21:04:00 +0000
committerKevin Sawicki2011-09-11 21:04:00 +0000
commit92b846f6f3ae31c130100967a208317e56da9545 (patch)
treed865a2d90ae12d43ae90be87b6489b201a58bfa8 /org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core
parentbfbbf3d66b312f5cb9375ea34f6d5670791ba618 (diff)
downloadegit-github-92b846f6f3ae31c130100967a208317e56da9545.tar.gz
egit-github-92b846f6f3ae31c130100967a208317e56da9545.tar.xz
egit-github-92b846f6f3ae31c130100967a208317e56da9545.zip
Update exception message to place field name first.
Also add unit tests of RequestException class. Change-Id: Iebc93b2bddc988919bc58f31b2a94322519a375d Signed-off-by: Kevin Sawicki <kevin@github.com>
Diffstat (limited to 'org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core')
-rw-r--r--org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/messages.properties10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/messages.properties b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/messages.properties
index 0900eb94..4a6d017d 100644
--- a/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/messages.properties
+++ b/org.eclipse.mylyn.github.core/src/org/eclipse/mylyn/internal/github/core/messages.properties
@@ -1,5 +1,5 @@
-FieldError_InvalidField=Invalid value for field {0}
-FieldError_InvalidFieldWithValue=Invalid value of ''{0}'' for field ''{1}''
-FieldError_MissingField=Missing required field ''{0}''
-FieldError_ResourceError=Error with field ''{0}'' in {1} resource
-FieldError_AlreadyExists={0} resource with field ''{1}'' already exists
+FieldError_InvalidField=Invalid value for ''{0}'' field
+FieldError_InvalidFieldWithValue=Invalid value of ''{0}'' for ''{1}'' field
+FieldError_MissingField=Missing required ''{0}'' field
+FieldError_ResourceError=Error with ''{0}'' field in {1} resource
+FieldError_AlreadyExists={0} resource with ''{1}'' field already exists

Back to the top