InternalServiceException.cs 189 B

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