这个问题可以必现么?如果可以的话必现的方式是什么?另外,异常的内容是什么?

我是通过imConversation.sendMessage(imTypedMessage, new AVIMConversationCallback() {
@Override
public void done(AVException e) {
if (e == null) {
Log.w(TAG, "send success");
} else {
Log.w(TAG, "send failed");
}
}
});
类似于这样的代码发送消息,log 打印出 发送失败,但是对方却能收到

可以把e的code和message打印出来么