Exception: Exception

Defined in:
lib/eco/api/common/version_patches/exception.rb

Instance Method Summary collapse

Instance Method Details

#patch_full_messageObject



2
3
4
5
6
7
# File 'lib/eco/api/common/version_patches/exception.rb', line 2

def patch_full_message
  msg = []
  msg << "#{backtrace.shift} #{message} (#{self.class.to_s})"
  backtrace.each {|bt| msg << "#{" "*8}from #{bt}"}
  msg.join("\n")
end