mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-26 11:27:58 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
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)
|
|
{
|
|
}
|
|
}
|
|
}
|