class GameServer::ServerError

Attributes

comment[RW]
name[RW]

Public Class Methods

new(name, comment = "") click to toggle source
Calls superclass method
# File lib/server_error.rb, line 3
def initialize(name, comment = "")
  self.name = name
  self.comment = comment
  super(name)
end