Files
2026-06-07 16:58:24 +01:00

12 lines
287 B
C#

using System;
namespace VRC.SDK3.ClientSim
{
/// <summary>
/// A wrapper for exceptions that can easily be checked in Tests.
/// </summary>
public class ClientSimException : Exception
{
public ClientSimException(string message) : base(message) { }
}
}