diff --git a/src/Microsoft.PowerApps.TestEngine/System/AssertionFailureException.cs b/src/Microsoft.PowerApps.TestEngine/System/AssertionFailureException.cs index 781da5c4d..d5ffbd31b 100644 --- a/src/Microsoft.PowerApps.TestEngine/System/AssertionFailureException.cs +++ b/src/Microsoft.PowerApps.TestEngine/System/AssertionFailureException.cs @@ -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) + { + } } }