InternalErrorException.cs 339 B

123456789101112131415
  1. using System;
  2. namespace Ryujinx.Graphics.Nvdec.Vp9
  3. {
  4. class InternalErrorException : Exception
  5. {
  6. public InternalErrorException(string message) : base(message)
  7. {
  8. }
  9. public InternalErrorException(string message, Exception innerException) : base(message, innerException)
  10. {
  11. }
  12. }
  13. }