class Dotbot::DotbotError
Public Class Methods
new(message=nil)
click to toggle source
Calls superclass method
# File lib/dotbot/errors.rb, line 4 def initialize(message=nil) STDERR.puts help_text(message) super end
Public Instance Methods
help_text(message=nil)
click to toggle source
# File lib/dotbot/errors.rb, line 9 def help_text(message=nil) "A generic Dotbot Error has occurred." end