GamerPrivilegeException.cs 441 B

123456789101112
  1. namespace Microsoft.Xna.Framework.Net
  2. {
  3. /// <summary>
  4. /// Exception thrown when gamer privilege operations fail.
  5. /// </summary>
  6. public class GamerPrivilegeException : Exception
  7. {
  8. public GamerPrivilegeException() : base() { }
  9. public GamerPrivilegeException(string message) : base(message) { }
  10. public GamerPrivilegeException(string message, Exception innerException) : base(message, innerException) { }
  11. }
  12. }