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