rich7420 commented on code in PR #10749:
URL: https://github.com/apache/ozone/pull/10749#discussion_r3577914069


##########
hadoop-ozone/s3gateway/src/main/java/org/apache/hadoop/ozone/s3/signature/MalformedResourceException.java:
##########
@@ -23,17 +23,32 @@
  */
 public class MalformedResourceException extends Exception {
   private final String resource;
+  private final boolean accessDenied;
 
   public MalformedResourceException(String resource) {
+    this(resource, false);
+  }
+
+  public MalformedResourceException(String resource, boolean accessDenied) {
     this.resource = resource;
+    this.accessDenied = accessDenied;

Review Comment:
   ok , I'll create a new class



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to