summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-31 18:47:48 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-31 18:47:48 -0700
commitca35efa9ffe8469328d0001f754a0c3a0d90c57e (patch)
tree39363ab298b90c5d1f1f02b896ab2554a0ecfd4a /src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs
parent7c456b35c0570df86a2626dd8907726711ab6755 (diff)
downloadDotNetOpenAuth-ca35efa9ffe8469328d0001f754a0c3a0d90c57e.zip
DotNetOpenAuth-ca35efa9ffe8469328d0001f754a0c3a0d90c57e.tar.gz
DotNetOpenAuth-ca35efa9ffe8469328d0001f754a0c3a0d90c57e.tar.bz2
Moved localizable strings into specific OAuth 2 assemblies.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs
index a59eaa7..dbb1279 100644
--- a/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs
+++ b/src/DotNetOpenAuth.OAuth2.AuthorizationServer/OAuth2/AuthServerUtilities.cs
@@ -32,9 +32,9 @@ namespace DotNetOpenAuth.OAuth2 {
ErrorUtilities.VerifyHost(result != null, OAuthStrings.ResultShouldNotBeNull, authorizationServer.GetType().FullName, "GetClient(string)");
return result;
} catch (KeyNotFoundException ex) {
- throw ErrorUtilities.Wrap(ex, OAuthStrings.ClientOrTokenSecretNotFound);
+ throw ErrorUtilities.Wrap(ex, AuthServerStrings.ClientOrTokenSecretNotFound);
} catch (ArgumentException ex) {
- throw ErrorUtilities.Wrap(ex, OAuthStrings.ClientOrTokenSecretNotFound);
+ throw ErrorUtilities.Wrap(ex, AuthServerStrings.ClientOrTokenSecretNotFound);
}
}