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