AgoraRtcException
错误码及错误描述。
Dart
class AgoraRtcException implements Exception {
AgoraRtcException({required this.code, this.message});
final int code;
final String? message;
String toString() => 'AgoraRtcException($code, $message)';
}
code
错误码,详见 ErrorCodeType。
message
错误描述。