class LoggableActivity::Error
Error
class for loggable activity.
Public Class Methods
new(msg = '')
click to toggle source
Calls superclass method
# File lib/loggable_activity/error.rb, line 6 def initialize(msg = '') puts '---------------- LOGGABLE ACTIVITY -----------------' puts msg puts '----------------------------------------------------' super(msg) end