Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
Normal file
19
src/Ryujinx.Horizon.Common/ThreadTerminatedException.cs
Normal file
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user