We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71e71ed commit 8135d14Copy full SHA for 8135d14
packages/dart/lib/src/network/parse_dio_client.dart
@@ -215,7 +215,8 @@ class ParseDioClient extends ParseClient {
215
String _buildErrorJson(String errorMessage) {
216
final Map<String, dynamic> errorPayload = <String, dynamic>{
217
'code': ParseError.otherCause,
218
- 'error': errorMessage,
+ 'error': 'NetworkError',
219
+ 'exception': errorMessage,
220
};
221
return jsonEncode(errorPayload);
222
}
0 commit comments