2018-02-10 13:24:16 +00:00
|
|
|
using System;
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.Exceptions
|
2018-02-10 13:24:16 +00:00
|
|
|
{
|
|
|
|
public class GuestBrokeExecutionException : Exception
|
|
|
|
{
|
|
|
|
private const string ExMsg = "The guest program broke execution!";
|
|
|
|
|
|
|
|
public GuestBrokeExecutionException() : base(ExMsg) { }
|
|
|
|
}
|
|
|
|
}
|