using System; namespace Chronos.Reflection { /// /// An exception thrown by the Ludiq Reflection plugin. /// public class UnityReflectionException : Exception { public UnityReflectionException() : base() { } public UnityReflectionException(string message) : base(message) { } public UnityReflectionException(string message, Exception innerException) : base(message, innerException) { } } }