GuestBrokeExecutionException.cs
1 using System; 2 3 namespace Ryujinx.HLE.Exceptions 4 { 5 public class GuestBrokeExecutionException : Exception 6 { 7 private const string ExMsg = "The guest program broke execution!"; 8 9 public GuestBrokeExecutionException() : base(ExMsg) { } 10 } 11 }