2
0

RemotingException.cs 633 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Runtime.Remoting.RemotingException.cs
  3. //
  4. // AUthor: Duncan Mak ([email protected])
  5. //
  6. // 2002 (C) Copyright. Ximian, Inc.
  7. //
  8. using System;
  9. using System.Runtime.Serialization;
  10. namespace System.Runtime.Remoting {
  11. [Serializable]
  12. public class RemotingException : SystemException
  13. {
  14. public RemotingException ()
  15. : base ()
  16. {
  17. }
  18. public RemotingException (string message)
  19. : base (message)
  20. {
  21. }
  22. protected RemotingException (SerializationInfo info, StreamingContext context)
  23. : base (info, context)
  24. {
  25. }
  26. public RemotingException (string message, Exception ex)
  27. : base (message, ex)
  28. {
  29. }
  30. }
  31. }