case class CommandError(error: String, channel: TextChannel, cache: CacheSnapshot) extends Product with Serializable
Represents an error encountered when executing an command.
- error
The errror message
- channel
The channel the error occoured in
- cache
A cache snapshot tied to the execution of the command
- Source
- commandBuilder.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CommandError
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CommandError(error: String, channel: TextChannel, cache: CacheSnapshot)
- error
The errror message
- channel
The channel the error occoured in
- cache
A cache snapshot tied to the execution of the command
Value Members
- val cache: CacheSnapshot
- val channel: TextChannel
- val error: String
- def productElementNames: Iterator[String]
- Definition Classes
- Product