class MinecraftAvatars::InvalidPlayerException

Attributes

player[RW]

Public Class Methods

new(player) click to toggle source
Calls superclass method
# File lib/minecraft-avatars/exceptions.rb, line 9
def initialize(player)
  self.player = player
  super "Player #{player} does not exist"
end