summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/OAuthChannel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-09 17:23:26 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-09 17:23:26 -0700
commit32ac38940a40a70c171eedc72b4aacdbba692279 (patch)
treeaf919b96edd57fcf05d9c98fac66edcd807c3e5c /src/DotNetOAuth/OAuthChannel.cs
parent6f2ee87f545b26ed320aad94be5fd042c409f5f9 (diff)
downloadDotNetOpenAuth-32ac38940a40a70c171eedc72b4aacdbba692279.zip
DotNetOpenAuth-32ac38940a40a70c171eedc72b4aacdbba692279.tar.gz
DotNetOpenAuth-32ac38940a40a70c171eedc72b4aacdbba692279.tar.bz2
Refactored the exception handling in the channel stack.
Diffstat (limited to 'src/DotNetOAuth/OAuthChannel.cs')
-rw-r--r--src/DotNetOAuth/OAuthChannel.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/DotNetOAuth/OAuthChannel.cs b/src/DotNetOAuth/OAuthChannel.cs
index 6271954..4014ecf 100644
--- a/src/DotNetOAuth/OAuthChannel.cs
+++ b/src/DotNetOAuth/OAuthChannel.cs
@@ -152,23 +152,6 @@ namespace DotNetOAuth {
}
/// <summary>
- /// Reports an error to the user via the user agent.
- /// </summary>
- /// <param name="exception">The error information.</param>
- protected override void ReportErrorToUser(ProtocolException exception) {
- throw new NotImplementedException();
- }
-
- /// <summary>
- /// Sends an error result directly to the calling remote party according to the
- /// rules of the protocol.
- /// </summary>
- /// <param name="exception">The error information.</param>
- protected override void ReportErrorAsDirectResponse(ProtocolException exception) {
- throw new NotImplementedException();
- }
-
- /// <summary>
/// Prepares to send a request to the Service Provider via the Authorization header.
/// </summary>
/// <param name="requestMessage">The message to be transmitted to the ServiceProvider.</param>