Skip to content

Commit

Permalink
fix errorhandling on ServiceStack client
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Mar 3, 2011
1 parent 6422925 commit 25e7d64
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Binary file modified lib/ServiceStack.ServiceInterface.dll
Binary file not shown.
Binary file modified release/latest/ServiceStack.Interfaces.dll
Binary file not shown.
Binary file modified release/latest/ServiceStack.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,14 @@ private TResponse HandleResponseException<TResponse>(Exception ex, string httpMe
return response;
}
}

HandleResponseException<TResponse>(ex, requestUri);
}
catch (Exception subEx)
{
HandleResponseException<TResponse>(ex, requestUri);
}

throw ex;
HandleResponseException<TResponse>(ex, requestUri);
throw ex; //Doesn't get galled
}

private void HandleResponseException<TResponse>(Exception ex, string requestUri)
Expand Down

0 comments on commit 25e7d64

Please sign in to comment.