mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-06-28 03:16:23 +02:00
11 lines
No EOL
263 B
C#
11 lines
No EOL
263 B
C#
using System;
|
|
|
|
namespace Ryujinx.OsHle.Exceptions
|
|
{
|
|
public class GuestBrokeExecutionException : Exception
|
|
{
|
|
private const string ExMsg = "The guest program broke execution!";
|
|
|
|
public GuestBrokeExecutionException() : base(ExMsg) { }
|
|
}
|
|
} |