Ryujinx/Ryujinx.HLE/OsHle/Exceptions/GuestBrokeExecutionException.cs

11 lines
267 B
C#
Raw Normal View History

using System;
2018-06-16 03:20:48 +02:00
namespace Ryujinx.HLE.OsHle.Exceptions
{
public class GuestBrokeExecutionException : Exception
{
private const string ExMsg = "The guest program broke execution!";
public GuestBrokeExecutionException() : base(ExMsg) { }
}
}