001package com.ericlam.mc.bungee.hnmc.commands.caxerx.exception; 002 003import com.ericlam.mc.bungee.hnmc.commands.caxerx.CommandNodeBuilder; 004 005/** 006 * 沒有執行函式 007 * 008 * @author Eric Lam 009 * @see CommandNodeBuilder#build() 010 */ 011public class NotExecutableException extends RuntimeException { 012 private String command; 013 014 public NotExecutableException(String command) { 015 super("執行函式 為 Null"); 016 this.command = command; 017 } 018 019 public String getCommand() { 020 return command; 021 } 022}