public void SetUp()
        {
            theException = new EnvelopeDeserializationException("foo");
            theContext = new TestEnvelopeContext();

            theEnvelope = ObjectMother.EnvelopeWithSerializationError();

            new DeserializationFailureContinuation(theException)
                .Execute(theEnvelope, theContext);
        }
 public DeserializationFailureContinuation(EnvelopeDeserializationException exception)
 {
     _exception = exception;
 }