2018-02-10 08:24:16 -05:00
|
|
|
using System;
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.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) { }
|
|
|
|
}
|
|
|
|
}
|