namespace Microsoft.Xna.Framework.Net { /// /// Exception thrown when gamer privilege operations fail. /// public class GamerPrivilegeException : Exception { public GamerPrivilegeException() : base() { } public GamerPrivilegeException(string message) : base(message) { } public GamerPrivilegeException(string message, Exception innerException) : base(message, innerException) { } } }