InvalidNpdmException.cs 185 B

123456789
  1. using System;
  2. namespace Ryujinx.HLE.Exceptions
  3. {
  4. public class InvalidNpdmException : Exception
  5. {
  6. public InvalidNpdmException(string ExMsg) : base(ExMsg) { }
  7. }
  8. }