GuestBrokeExecutionException.cs 261 B

1234567891011
  1. using System;
  2. namespace Ryujinx.HLE.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. }