mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-08-12 11:59:09 +00:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
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) { }
|
|
}
|
|
}
|