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