10 lines
186 B
C#
10 lines
186 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
public class InvalidNpdmException : Exception
|
|
{
|
|
public InvalidNpdmException(string message) : base(message) { }
|
|
}
|
|
}
|