Move solution and projects to src
This commit is contained in:
15
src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
Normal file
15
src/Ryujinx.Graphics.Nvdec.Vp9/InternalErrorException.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user