core/src/main/java/org/apache/gravitino/listener/api/event/RevokeGroupRolesFailureEvent.java [44:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public RevokeGroupRolesFailureEvent(
      String initiator,
      String metalake,
      Exception exception,
      String groupName,
      List<String> roles) {
    super(initiator, NameIdentifierUtil.ofGroup(metalake, groupName), exception);

    this.groupName = groupName;
    this.roles = roles;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core/src/main/java/org/apache/gravitino/listener/api/event/GrantGroupRolesFailureEvent.java [44:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public GrantGroupRolesFailureEvent(
      String initiator,
      String metalake,
      Exception exception,
      String groupName,
      List<String> roles) {
    super(initiator, NameIdentifierUtil.ofGroup(metalake, groupName), exception);

    this.groupName = groupName;
    this.roles = roles;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



