ServerException.cs 507 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Runtime.Remoting.ServerException.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 ServerException : SystemException
  13. {
  14. public ServerException ()
  15. : base ()
  16. {
  17. }
  18. public ServerException (string message)
  19. : base (message)
  20. {
  21. }
  22. public ServerException (string message, Exception ex)
  23. : base (message, ex)
  24. {
  25. }
  26. }
  27. }