Beispiel #1
0
 public RtmException(ResponseError error, string message)
     : base(message)
 {
     ResponseError = error;
 }
Beispiel #2
0
 public RtmException(ResponseError error, string message, Exception inner)
     : base(message, inner)
 {
     ResponseError = error;
 }
Beispiel #3
0
 public RtmException(ResponseError error)
     : base(error.Message)
 {
     ResponseError = error;
 }