You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Intended for writing unit, integration, functional and all types of tests. #jira UEENGQA-49764 #rb Jerome.Delattre [CL 17666358 by chris constantinescu in ue5-main branch]
29 lines
507 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|