您好,请提供一下对应的代码片段及日志。
打开日志的方法:
iOS:[AVOSCloud setAllLogsEnabled:YES];
Android:AVOSCloud.setDebugLogEnabled(true);

case AVException.INTERNAL_SERVER_ERROR:
            exception = new AVException("服务异常", new Throwable());
 break;
Tools.printLog(exception.getMessage()+":"+e.getCode()+"--------"+e.getMessage()+"------"+e.toString());

日志:07-25 17:18:10.103 21766-21766/com.beilin E/TAG: 服务异常:1--------{"code":1,"error":"Forbidden writing by object's ACL, the object id is 57909978d342d30059c347f5."}------com.avos.avoscloud.AVException: {"code":1,"error":"Forbidden writing by object's ACL, the object id is 57909978d342d30059c347f5."}

这个是 ACL 权限,可以检查一下要删除的数据的 ACL 这一个字段的数据。

{"*":{"write":false,"read":true}}
可是抛出的异常解释没错,Forbidden writing by object's ACL,可是定义的常量的名字却是INTERNAL_SERVER_ERROR

那之后对异常判断的时候,想自定义异常信息,不久很迷茫了?

我们将很快改善这个情况,使其返回 403 错误。

现在已经是 403 错误了