NetworkException.cs 405 B

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