Hi folks,
is it possible to throw a custom error message to a ThrowActivity, in windows workflow foundation?
eg. Imagine i want to throw this exception, in my WF :-
CutomException("This is my custom error message", myNumber, myObect);
cheers :)
|
|
Hi folks, is it possible to throw a custom error message to a ThrowActivity, in windows workflow foundation? eg. Imagine i want to throw this exception, in my WF :-
cheers :)
|
|||
|
|
|
|
Maybe I do not understand your question well, but you can set the specific exception with the
|
||
|
|
|
You can throw any custom exception like this way. public DiscontinuedProductException discontinuedProductException1 = new DiscontinuedProductException(); [SerializableAttribute()] public class DiscontinuedProductException : Exception { public DiscontinuedProductException() : base() { }
|
||
|
|