aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Horizon.Common/ThreadTerminatedException.cs')
-rw-r--r--Ryujinx.Horizon.Common/ThreadTerminatedException.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Ryujinx.Horizon.Common/ThreadTerminatedException.cs b/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
new file mode 100644
index 00000000..c86cb05f
--- /dev/null
+++ b/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
@@ -0,0 +1,19 @@
+using System;
+
+namespace Ryujinx.Horizon.Common
+{
+ public class ThreadTerminatedException : Exception
+ {
+ public ThreadTerminatedException() : base("The thread has been terminated.")
+ {
+ }
+
+ public ThreadTerminatedException(string message) : base(message)
+ {
+ }
+
+ public ThreadTerminatedException(string message, Exception innerException) : base(message, innerException)
+ {
+ }
+ }
+}