You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our sync invoke method rethrows captured exception with new stacktrace, losing crucial information that could be helpful while debugging. See CommandBase.cs#L96 for StoreApps. Same thing for Silverlight.
We should keep original stacktrace using something like throw new Exception(message, ex) and making sure that final json response includes message and stacktrace both of exception and any of its inner exceptions.
The text was updated successfully, but these errors were encountered:
Our sync invoke method rethrows captured exception with new stacktrace, losing crucial information that could be helpful while debugging. See CommandBase.cs#L96 for StoreApps. Same thing for Silverlight.
We should keep original stacktrace using something like
throw new Exception(message, ex)
and making sure that final json response includes message and stacktrace both of exception and any of its inner exceptions.The text was updated successfully, but these errors were encountered: