Skip to content

Commit

Permalink
Merge pull request #308 from UiPath/fix/fault_context_public_constructor
Browse files Browse the repository at this point in the history
Modified FaultContext's constructor to be public
  • Loading branch information
gabriela-lungu-uip authored Mar 7, 2024
2 parents 6e116b4 + e281979 commit 7524e1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UiPath.Workflow.Runtime/Runtime/FaultContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ internal class FaultContext
private Exception _exception;
private ActivityInstanceReference _source;

internal FaultContext(Exception exception, ActivityInstanceReference sourceReference)
public FaultContext(Exception exception, ActivityInstanceReference sourceReference)
{
Fx.Assert(exception != null, "Must have an exception.");
Fx.Assert(sourceReference != null, "Must have a source.");
Expand Down

0 comments on commit 7524e1e

Please sign in to comment.