blob: ad764889e7efd914b48058ce6d35db6cc0dc0436 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
using System;
namespace Ryujinx.HLE.Exceptions
{
class InternalServiceException : Exception
{
public InternalServiceException(string message) : base(message) { }
}
}
|