kyuubi-relocated-zookeeper-parent/kyuubi-relocated-zookeeper-34/src/main/java/org/apache/zookeeper/KeeperException.java [394:507]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      return "KeeperErrorCode = " + getCodeMessage(code);
    }
    return "KeeperErrorCode = " + getCodeMessage(code) + " for " + path;
  }

  void setMultiResults(List<OpResult> results) {
    this.results = results;
  }

  /**
   * If this exception was thrown by a multi-request then the (partial) results and error codes can
   * be retrieved using this getter.
   *
   * @return A copy of the list of results from the operations in the multi-request.
   * @since 3.4.0
   */
  public List<OpResult> getResults() {
    return results != null ? new ArrayList<OpResult>(results) : null;
  }

  /** @see Code#APIERROR */
  @InterfaceAudience.Public
  public static class APIErrorException extends KeeperException {
    public APIErrorException() {
      super(Code.APIERROR);
    }
  }

  /** @see Code#AUTHFAILED */
  @InterfaceAudience.Public
  public static class AuthFailedException extends KeeperException {
    public AuthFailedException() {
      super(Code.AUTHFAILED);
    }
  }

  /** @see Code#BADARGUMENTS */
  @InterfaceAudience.Public
  public static class BadArgumentsException extends KeeperException {
    public BadArgumentsException() {
      super(Code.BADARGUMENTS);
    }

    public BadArgumentsException(String path) {
      super(Code.BADARGUMENTS, path);
    }
  }

  /** @see Code#BADVERSION */
  @InterfaceAudience.Public
  public static class BadVersionException extends KeeperException {
    public BadVersionException() {
      super(Code.BADVERSION);
    }

    public BadVersionException(String path) {
      super(Code.BADVERSION, path);
    }
  }

  /** @see Code#CONNECTIONLOSS */
  @InterfaceAudience.Public
  public static class ConnectionLossException extends KeeperException {
    public ConnectionLossException() {
      super(Code.CONNECTIONLOSS);
    }
  }

  /** @see Code#DATAINCONSISTENCY */
  @InterfaceAudience.Public
  public static class DataInconsistencyException extends KeeperException {
    public DataInconsistencyException() {
      super(Code.DATAINCONSISTENCY);
    }
  }

  /** @see Code#INVALIDACL */
  @InterfaceAudience.Public
  public static class InvalidACLException extends KeeperException {
    public InvalidACLException() {
      super(Code.INVALIDACL);
    }

    public InvalidACLException(String path) {
      super(Code.INVALIDACL, path);
    }
  }

  /** @see Code#INVALIDCALLBACK */
  @InterfaceAudience.Public
  public static class InvalidCallbackException extends KeeperException {
    public InvalidCallbackException() {
      super(Code.INVALIDCALLBACK);
    }
  }

  /** @see Code#MARSHALLINGERROR */
  @InterfaceAudience.Public
  public static class MarshallingErrorException extends KeeperException {
    public MarshallingErrorException() {
      super(Code.MARSHALLINGERROR);
    }
  }

  /** @see Code#NOAUTH */
  @InterfaceAudience.Public
  public static class NoAuthException extends KeeperException {
    public NoAuthException() {
      super(Code.NOAUTH);
    }
  }

  /** @see Code#NOCHILDRENFOREPHEMERALS */
  @InterfaceAudience.Public
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



kyuubi-relocated-zookeeper-parent/kyuubi-relocated-zookeeper-36/src/main/java/org/apache/zookeeper/KeeperException.java [464:587]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      return "KeeperErrorCode = " + getCodeMessage(code);
    }
    return "KeeperErrorCode = " + getCodeMessage(code) + " for " + path;
  }

  void setMultiResults(List<OpResult> results) {
    this.results = results;
  }

  /**
   * If this exception was thrown by a multi-request then the (partial) results and error codes can
   * be retrieved using this getter.
   *
   * @return A copy of the list of results from the operations in the multi-request.
   * @since 3.4.0
   */
  public List<OpResult> getResults() {
    return results != null ? new ArrayList<OpResult>(results) : null;
  }

  /** @see Code#APIERROR */
  @InterfaceAudience.Public
  public static class APIErrorException extends KeeperException {

    public APIErrorException() {
      super(Code.APIERROR);
    }
  }

  /** @see Code#AUTHFAILED */
  @InterfaceAudience.Public
  public static class AuthFailedException extends KeeperException {

    public AuthFailedException() {
      super(Code.AUTHFAILED);
    }
  }

  /** @see Code#BADARGUMENTS */
  @InterfaceAudience.Public
  public static class BadArgumentsException extends KeeperException {

    public BadArgumentsException() {
      super(Code.BADARGUMENTS);
    }

    public BadArgumentsException(String path) {
      super(Code.BADARGUMENTS, path);
    }
  }

  /** @see Code#BADVERSION */
  @InterfaceAudience.Public
  public static class BadVersionException extends KeeperException {

    public BadVersionException() {
      super(Code.BADVERSION);
    }

    public BadVersionException(String path) {
      super(Code.BADVERSION, path);
    }
  }

  /** @see Code#CONNECTIONLOSS */
  @InterfaceAudience.Public
  public static class ConnectionLossException extends KeeperException {

    public ConnectionLossException() {
      super(Code.CONNECTIONLOSS);
    }
  }

  /** @see Code#DATAINCONSISTENCY */
  @InterfaceAudience.Public
  public static class DataInconsistencyException extends KeeperException {

    public DataInconsistencyException() {
      super(Code.DATAINCONSISTENCY);
    }
  }

  /** @see Code#INVALIDACL */
  @InterfaceAudience.Public
  public static class InvalidACLException extends KeeperException {

    public InvalidACLException() {
      super(Code.INVALIDACL);
    }

    public InvalidACLException(String path) {
      super(Code.INVALIDACL, path);
    }
  }

  /** @see Code#INVALIDCALLBACK */
  @InterfaceAudience.Public
  public static class InvalidCallbackException extends KeeperException {

    public InvalidCallbackException() {
      super(Code.INVALIDCALLBACK);
    }
  }

  /** @see Code#MARSHALLINGERROR */
  @InterfaceAudience.Public
  public static class MarshallingErrorException extends KeeperException {

    public MarshallingErrorException() {
      super(Code.MARSHALLINGERROR);
    }
  }

  /** @see Code#NOAUTH */
  @InterfaceAudience.Public
  public static class NoAuthException extends KeeperException {

    public NoAuthException() {
      super(Code.NOAUTH);
    }
  }

  /** @see Code#NEWCONFIGNOQUORUM */
  @InterfaceAudience.Public
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



