From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- Ryujinx.Horizon.Common/ThreadTerminatedException.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 Ryujinx.Horizon.Common/ThreadTerminatedException.cs (limited to 'Ryujinx.Horizon.Common/ThreadTerminatedException.cs') diff --git a/Ryujinx.Horizon.Common/ThreadTerminatedException.cs b/Ryujinx.Horizon.Common/ThreadTerminatedException.cs deleted file mode 100644 index c86cb05f..00000000 --- a/Ryujinx.Horizon.Common/ThreadTerminatedException.cs +++ /dev/null @@ -1,19 +0,0 @@ -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) - { - } - } -} -- cgit v1.2.3