mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-05 13:52:55 +00:00
9 lines
203 B
C#
9 lines
203 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
class InvalidFirmwarePackageException : Exception
|
|
{
|
|
public InvalidFirmwarePackageException(string message) : base(message) { }
|
|
}
|
|
} |