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