Exception: Errors::HandsFull

Inherits:
Exception
  • Object
show all
Defined in:
lib/Olib/core/errors.rb

Instance Method Summary collapse

Constructor Details

#initializeHandsFull

Returns a new instance of HandsFull.



62
63
64
65
66
67
# File 'lib/Olib/core/errors.rb', line 62

def initialize
  message = String.new
  message.concat "\n\nYour hands were full!"
  message.concat "\nyou should rescue this error if you don't want your script to break"
  super Errors.indent message
end