mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:48:36 +00:00
10 lines
189 B
C#
10 lines
189 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Ryujinx.HLE.Exceptions
|
|||
|
{
|
|||
|
class InternalServiceException: Exception
|
|||
|
{
|
|||
|
public InternalServiceException(string message) : base(message) { }
|
|||
|
}
|
|||
|
}
|