Skip to content

Commit 14d45d8

Browse files
authored
AssertionFailureException Update (#257)
1 parent c89decf commit 14d45d8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Microsoft.PowerApps.TestEngine/System/AssertionFailureException.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,18 @@ namespace Microsoft.PowerApps.TestEngine.System
77
{
88
public class AssertionFailureException : Exception
99
{
10+
public AssertionFailureException()
11+
{
12+
}
13+
1014
public AssertionFailureException(string message)
1115
: base(message)
1216
{
1317
}
18+
19+
public AssertionFailureException(string message, Exception innerException)
20+
: base(message, innerException)
21+
{
22+
}
1423
}
1524
}

0 commit comments

Comments
 (0)