Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Gauntlet/Framework/Gauntlet.Exception.cs
chris constantinescu 72b02c5967 Low Level Tests: code tests built on Catch2 with multi-platform support.
Intended for writing unit, integration, functional and all types of tests.

#jira UEENGQA-49764
#rb Jerome.Delattre


#ROBOMERGE-AUTHOR: chris.constantinescu
#ROBOMERGE-SOURCE: CL 17666358 in //UE5/Main/...
#ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v875-17642767)

[CL 17666384 by chris constantinescu in ue5-release-engine-test branch]
2021-09-29 15:50:57 -04:00

29 lines
507 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace Gauntlet
{
public class TestException : System.Exception
{
public TestException(string Msg)
: base(Msg)
{
}
public TestException(string Format, params object[] Args)
: base(string.Format(Format, Args))
{
}
}
public class DeviceException : TestException
{
public DeviceException(string Msg)
: base(Msg)
{
}
public DeviceException(string Format, params object[] Args)
: base(Format, Args)
{
}
}
}