ThreadTerminatedException.cs
1 using System; 2 3 namespace Ryujinx.Horizon.Common 4 { 5 public class ThreadTerminatedException : Exception 6 { 7 public ThreadTerminatedException() : base("The thread has been terminated.") 8 { 9 } 10 11 public ThreadTerminatedException(string message) : base(message) 12 { 13 } 14 15 public ThreadTerminatedException(string message, Exception innerException) : base(message, innerException) 16 { 17 } 18 } 19 }