mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-23 21:47:10 +02:00
9 lines
No EOL
197 B
C#
9 lines
No EOL
197 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class TamperCompilationException : Exception
|
|
{
|
|
public TamperCompilationException(string message) : base(message) { }
|
|
}
|
|
} |