class Olib::Errors::HandsFull

Public Class Methods

new() click to toggle source
Calls superclass method
# 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