NotFoundException.cs 195 B

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