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