public RtmException(ResponseError error, string message) : base(message) { ResponseError = error; }
public RtmException(ResponseError error, string message, Exception inner) : base(message, inner) { ResponseError = error; }
public RtmException(ResponseError error) : base(error.Message) { ResponseError = error; }