NpdmException.cs 196 B

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