IPFormatException.cs 196 B

12345678910111213
  1. using System;
  2. namespace TEAMModelOS.SDK.DI.IPIP
  3. {
  4. public class IPFormatException : Exception
  5. {
  6. public IPFormatException(string name) : base(name)
  7. {
  8. }
  9. }
  10. }