mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
12 lines
No EOL
274 B
C#
12 lines
No EOL
274 B
C#
using System.Diagnostics;
|
|
using LibHac.Common;
|
|
|
|
namespace LibHac.Tests;
|
|
|
|
public class DebugAssertHandler : DefaultTraceListener
|
|
{
|
|
public override void Fail(string message, string detailMessage)
|
|
{
|
|
throw new LibHacException(message + detailMessage);
|
|
}
|
|
} |