2018-02-10 08:24:16 -05:00
|
|
|
using System;
|
|
|
|
|
2018-06-10 20:46:42 -04:00
|
|
|
namespace Ryujinx.HLE.OsHle.Exceptions
|
2018-02-10 08:24:16 -05:00
|
|
|
{
|
|
|
|
public class GuestBrokeExecutionException : Exception
|
|
|
|
{
|
|
|
|
private const string ExMsg = "The guest program broke execution!";
|
|
|
|
|
|
|
|
public GuestBrokeExecutionException() : base(ExMsg) { }
|
|
|
|
}
|
|
|
|
}
|