mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
11 lines
206 B
C#
11 lines
206 B
C#
|
using System;
|
||
|
|
||
|
namespace Ryujinx.HLE.Gpu.Exceptions
|
||
|
{
|
||
|
class GpuException : Exception
|
||
|
{
|
||
|
public GpuException() : base() { }
|
||
|
|
||
|
public GpuException(string ExMsg) : base(ExMsg) { }
|
||
|
}
|
||
|
}
|