ExecutionFailed

class ExecutionFailed(    val exception: Throwable,     val command: Command,     val call: CommandCall,     val resolvedCall: ResolvedCommandCall) : CommandExecuteResult.Failure

指令方法调用过程出现了错误

Constructors

Link copied to clipboard
fun ExecutionFailed(    exception: Throwable,     command: Command,     call: CommandCall,     resolvedCall: ResolvedCommandCall)

Properties

Link copied to clipboard
open override val call: CommandCall

解析的 CommandCall (如果匹配到)

Link copied to clipboard
open override val command: Command

尝试执行的指令

Link copied to clipboard
open override val exception: Throwable

指令执行时发生的错误

Link copied to clipboard
open override val resolvedCall: ResolvedCommandCall

解析的 ResolvedCommandCall (如果匹配到)