InsufficientConsumesArgumentCompException

class InsufficientConsumesArgumentCompException(val got: Int, val expected: Int, val at: String) : Exception

Exception thrown when there are insufficient arguments consumed in a command.

Constructors

constructor(got: Int, expected: Int, at: String)

Properties

Link copied to clipboard
val at: String

The location in the command where the error occurred.

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard

The number of arguments expected to be consumed.

Link copied to clipboard
val got: Int

The number of arguments actually consumed.

Link copied to clipboard
Link copied to clipboard
open val message: String?
Link copied to clipboard
Link copied to clipboard