mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-21 15:58:50 +00:00
9 lines
188 B
C#
9 lines
188 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class InvalidNpdmException : Exception
|
|
{
|
|
public InvalidNpdmException(string message) : base(message) { }
|
|
}
|
|
} |