0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-19 22:41:40 +00:00
ryujinx-fork/Ryujinx/OsHle/Exceptions/GuestBrokeExecutionException.cs

11 lines
263 B
C#
Raw Normal View History

using System;
namespace Ryujinx.OsHle.Exceptions
{
public class GuestBrokeExecutionException : Exception
{
private const string ExMsg = "The guest program broke execution!";
public GuestBrokeExecutionException() : base(ExMsg) { }
}
}