CommandError

class CommandError(    val acknowledging: String,     val code: Long,     val error: String) : CommandAcknowledgement

CommandError is a CommandAcknowledgement that provides error information that occurred in response to a Command.

Parameters

acknowledging

The original command id that this CommandAcknowledgement is in response to.

code

The user-defined numeric error code that identifies the error type.

error

The descriptive error text.

Constructors

Link copied to clipboard
fun CommandError(    acknowledging: String,     code: Long,     error: String)

Construct a CommandError.

Properties

Link copied to clipboard
val acknowledging: String

The original command id that this CommandAcknowledgement is in response to.

Link copied to clipboard
val code: Long

The user-defined numeric error code that identifies the error type.

Link copied to clipboard
val error: String

The descriptive error text.