{
protected override void Execute(CodeActivityContext context)
{
IWorkflowContext workflowContext = context.GetExtension<IWorkflowContext>();
if (workflowContext == null)
{
throw new Exception(/workflowContext null/);
}else
{
throw new Exception(/workflowContext not null/);
}
}
}