c# - Throwing custom exception from SSRS -
Is it possible to throw custom exceptions from SSRs, which I can capture in C #?
Something like this:
try {result = ssrs.Render (format, blank, outside extensions, encoding out, out mimeType, out warnings, stream id out); } I will use it to not display the report in the client's system; I will use commercial logic in the report I would love to keep
We want to throw an exception to not creating a report based on the data we raise an exception Have tried custom DLL for Unfortunately he was not working either.
We have increased an error with a specific string from a stored procedure and parse the exception message in C # which has worked very well. Not as good as we would like.
Comments
Post a Comment