up vote 2 down vote favorite
share [g+] share [fb]

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 :)

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Maybe I do not understand your question well, but you can set the specific exception with the Fault property of ThrowActivity in any place before the activity execution, e.g.:

throwActivity1.Fault = new CustomException("This is my custom error message", myNumber, myObect);
link|improve this answer
Yep! Perfect! i couldn't figure out how to do that in the designer .. so i did it in the code behind .. works great. Checking the designer again, it still makes no sence :P but that's ok :) – Pure.Krome Nov 14 '08 at 0:09
feedback

You can throw any custom exception like this way.

public DiscontinuedProductException discontinuedProductException1 = new DiscontinuedProductException();

[SerializableAttribute()] public class DiscontinuedProductException : Exception { public DiscontinuedProductException() : base() { }

    public DiscontinuedProductException(string message)
        : base(message)
    {
    }

    public DiscontinuedProductException(string message, Exception innerException)
        : base(message, innerException)
    {
    }

    protected DiscontinuedProductException(SerializationInfo info, StreamingContext context)
        : base(info, context)
    {
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.