mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 17:56:59 +01:00
3615a70cae
This reverts commit 85dbb9559a
.
9 lines
185 B
C#
9 lines
185 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class InvalidNpdmException : Exception
|
|
{
|
|
public InvalidNpdmException(string ExMsg) : base(ExMsg) { }
|
|
}
|
|
}
|