All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.cwcode.commands.executor.CommonExecutor Maven / Gradle / Ivy

package ru.cwcode.commands.executor;

import net.kyori.adventure.audience.Audience;

import java.util.Optional;

public abstract class CommonExecutor extends AbstractExecutor {
  
  @Override
  public void handleError(Exception exception) {
    exception.printStackTrace();
  }
  
  @Override
  protected Audience sender() {
    return sender.getAudience();
  }
  
  @Override
  protected Optional argP(int index) {
    throw new UnsupportedOperationException("Not supported yet.");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy