| 123456789101112131415 |
- 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)
- {
- }
- }
- }
|