mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-26 10:32:22 -05:00
10 lines
187 B
C#
10 lines
187 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Exceptions
|
|
{
|
|
class InternalServiceException : Exception
|
|
{
|
|
public InternalServiceException(string message) : base(message) { }
|
|
}
|
|
}
|