Package ru.tehkode.permissions.bukkit

Examples of ru.tehkode.permissions.bukkit.ErrorReport


  @Command(name = "pex",
      syntax = "report",
      permission = "permissions.manage.reportbug",
      description = "Create an issue template to report an issue")
  public void report(PermissionsEx plugin, CommandSender sender, Map<String, String> args) {
    ErrorReport report = ErrorReport.withException("User-requested report", new Exception().fillInStackTrace());
    sender.sendMessage("Fill in the information at " + report.getShortURL() + " to report an issue");
    sender.sendMessage(ChatColor.RED + "NOTE: A GitHub account is necessary to report issues. Create one at https://github.com/");
  }
View Full Code Here

TOP

Related Classes of ru.tehkode.permissions.bukkit.ErrorReport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.