We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c89decf commit 14d45d8Copy full SHA for 14d45d8
src/Microsoft.PowerApps.TestEngine/System/AssertionFailureException.cs
@@ -7,9 +7,18 @@ namespace Microsoft.PowerApps.TestEngine.System
7
{
8
public class AssertionFailureException : Exception
9
10
+ public AssertionFailureException()
11
+ {
12
+ }
13
+
14
public AssertionFailureException(string message)
15
: base(message)
16
17
}
18
19
+ public AssertionFailureException(string message, Exception innerException)
20
+ : base(message, innerException)
21
22
23
24
0 commit comments