mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-13 10:01:08 +00:00
16 lines
336 B
C#
16 lines
336 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)
|
|
{
|
|
}
|
|
}
|
|
}
|