
is it possible to output a new line in a plugin exception (InvalidPluginExecutionException)?
I have tried this:
throw new InvalidPluginExecutionException("line1 \n line2");
And this:
throw new InvalidPluginExecutionException("line1 \r\n line2");
Both options show that exception:
:
Also have tried this:
throw new InvalidPluginExecutionException("line1
line2");
Any suggestions?
Hello,
I believe that the usage of HTML within the error message text is not supported, please check this official article: docs.microsoft.com/.../use-invalidpluginexecutionexception-plugin-workflow-activities
Please mark the answer as verified if helpful.