Exception: Wirer::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/wirer/errors.rb

Overview

Thank you to rubyforge.org/projects/nestegg for the pattern

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, cause = nil) ⇒ Error

Returns a new instance of Error.



9
10
11
12
# File 'lib/wirer/errors.rb', line 9

def initialize(msg, cause=nil)
  @cause = cause
  super(msg)
end

Instance Attribute Details

#causeObject (readonly) Also known as: wrapped_error

Returns the value of attribute cause.



6
7
8
# File 'lib/wirer/errors.rb', line 6

def cause
  @cause
end

Instance Method Details

#set_backtrace(bt) ⇒ Object



14
15
16
17
18
19
20
# File 'lib/wirer/errors.rb', line 14

def set_backtrace(bt)
  if cause
    bt << "cause: #{cause.class.name}: #{cause}"
    bt.concat cause.backtrace
  end
  super(bt)
end