ryujinx/src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
2025-05-30 17:08:34 -05:00

15 lines
345 B
C#

using System;
namespace Ryujinx.Graphics.Nvdec.Vp9
{
internal class InternalErrorException : Exception
{
public InternalErrorException(string message) : base(message)
{
}
public InternalErrorException(string message, Exception innerException) : base(message, innerException)
{
}
}
}