SUDSGeneratorException.cs 446 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Runtime.Remoting.MetadataServices.SUDSGeneratorException
  3. //
  4. // Authors:
  5. // Martin Willemoes Hansen ([email protected])
  6. //
  7. // (C) 2003 Martin Willemoes Hansen
  8. //
  9. namespace System.Runtime.Remoting.MetadataServices
  10. {
  11. public class SUDSGeneratorException : Exception
  12. {
  13. [MonoTODO]
  14. public override string ToString()
  15. {
  16. throw new NotImplementedException();
  17. }
  18. [MonoTODO]
  19. ~SUDSGeneratorException()
  20. {
  21. }
  22. }
  23. }