1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonNetwork.Net
- {
- public class NetException : Exception
- {
- public NetException(string message)
- : base(message)
- {
- }
- public NetException(string message, Exception err)
- : base(message, err)
- {
- }
- }
- }
|