mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-25 10:50:08 +02:00
9 lines
197 B
C#
9 lines
197 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class TamperCompilationException : Exception
|
|
{
|
|
public TamperCompilationException(string message) : base(message) { }
|
|
}
|
|
} |