123456789101112 |
- namespace Microsoft.Xna.Framework.Net
- {
- /// <summary>
- /// Exception thrown when network operations fail.
- /// </summary>
- public class NetworkException : Exception
- {
- public NetworkException() : base() { }
- public NetworkException(string message) : base(message) { }
- public NetworkException(string message, Exception innerException) : base(message, innerException) { }
- }
- }
|