blob: baa0ab998bd4a6fdda8690a2e2586b387b74c0af (
plain) (
tree)
|
|
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)
{
}
}
}
|