Пример #1
0
 /// <summary>
 /// Creates an exception with an associated agent error status and custom message
 /// </summary>
 /// <param name="error">The <see cref="AgentError"/> status</param>
 /// <param name="message">The custom message for this error</param>
 public OutgoingAgentException(AgentError error, string message)
     : base(error, message)
 {
 }
Пример #2
0
 /// <summary>
 /// Creates an exception with an associated agent error status.
 /// </summary>
 /// <param name="error">The <see cref="AgentError"/> status</param>
 public OutgoingAgentException(AgentError error)
     : base(error)
 {
 }