12345678910111213141516171819202122232425 |
- using System;
- using System.Runtime.Serialization;
- namespace vStationManagementTool
- {
- [Serializable]
- internal class RPCException : Exception
- {
- public RPCException()
- {
- }
- public RPCException(string message) : base(message)
- {
- }
- public RPCException(string message, Exception innerException) : base(message, innerException)
- {
- }
- protected RPCException(SerializationInfo info, StreamingContext context) : base(info, context)
- {
- }
- }
- }
|