mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 00:47:11 +02:00
9 lines
No EOL
193 B
C#
9 lines
No EOL
193 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class TamperExecutionException : Exception
|
|
{
|
|
public TamperExecutionException(string message) : base(message) { }
|
|
}
|
|
} |