GuestBrokeExecutionException.cs 268 B

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