using System; namespace StrixMusic.Sdk.Tests { /// /// When thrown, indicates that the given type was accessed. /// /// The type that was accessed. internal class AccessedException : Exception { public Type Type { get; } = typeof(T); } }