mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-06 14:41:08 +00:00
10 lines
201 B
C#
10 lines
201 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
class InvalidFirmwarePackageException : Exception
|
|
{
|
|
public InvalidFirmwarePackageException(string message) : base(message) { }
|
|
}
|
|
}
|