RPCException.cs 543 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Runtime.Serialization;
  3. namespace vStationManagementTool
  4. {
  5. [Serializable]
  6. internal class RPCException : Exception
  7. {
  8. public RPCException()
  9. {
  10. }
  11. public RPCException(string message) : base(message)
  12. {
  13. }
  14. public RPCException(string message, Exception innerException) : base(message, innerException)
  15. {
  16. }
  17. protected RPCException(SerializationInfo info, StreamingContext context) : base(info, context)
  18. {
  19. }
  20. }
  21. }