Skip to content

Commit

Permalink
AssertionFailureException Update (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
landonmsft authored May 12, 2023
1 parent c89decf commit 14d45d8
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,18 @@ namespace Microsoft.PowerApps.TestEngine.System
{
public class AssertionFailureException : Exception
{
public AssertionFailureException()
{
}

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

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

0 comments on commit 14d45d8

Please sign in to comment.