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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CommandError
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. 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

  1. val cache: CacheSnapshot
  2. val channel: TextChannel
  3. val error: String
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product