mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-19 23:32:53 +00: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) { }
|
|
}
|
|
} |