class BeerList::NotAListError
Public Class Methods
new(msg=nil)
click to toggle source
Calls superclass method
# File lib/beer_list/exceptions.rb, line 18 def initialize(msg=nil) msg ||= "That object was not a BeerList::List" super msg end