Skip to content

Commit

Permalink
Merge pull request #215 from jerousseau/ConvertExceptionToRuntimeExce…
Browse files Browse the repository at this point in the history
…ption-patch

Fix ConvertExceptionToRuntimeException
  • Loading branch information
darkl authored Sep 11, 2017
2 parents 18d09f2 + 3dcd45f commit bfb008f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net45/WampSharp/WAMP2/V2/Rpc/Callee/LocalRpcOperation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ protected static WampException ConvertExceptionToRuntimeException(Exception exce
}

// TODO: Maybe try a different implementation.
return new WampRpcRuntimeException(canceledException.Message);
return new WampRpcRuntimeException(exception.Message);
}
}
}
}

0 comments on commit bfb008f

Please sign in to comment.