mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-10-14 18:35:51 -05:00
16 lines
339 B
C#
16 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)
|
|
{
|
|
}
|
|
}
|
|
}
|