mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-19 17:00:32 +00:00
15 lines
339 B
C#
15 lines
339 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec.Vp9
|
|
{
|
|
class InternalErrorException : Exception
|
|
{
|
|
public InternalErrorException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public InternalErrorException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|