class MijDiscord::Events::Exception

Attributes

exception[R]
payload[R]
type[R]

Public Class Methods

new(bot, type, exception, payload = nil) click to toggle source
Calls superclass method MijDiscord::Events::Generic::new
# File lib/mij-discord/events/basic.rb, line 29
def initialize(bot, type, exception, payload = nil)
  super(bot)

  @type, @exception, @payload = type, exception, payload
end