mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-30 09:51:33 -08:00
10 lines
185 B
C#
10 lines
185 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class InvalidNpdmException : Exception
|
|
{
|
|
public InvalidNpdmException(string exMsg) : base(exMsg) { }
|
|
}
|
|
}
|