Method: WT::ExpectedBodyPartNotFoundException#initialize

Defined in:
lib/assertion.rb

#initialize(body_part) ⇒ ExpectedBodyPartNotFoundException

Returns a new instance of ExpectedBodyPartNotFoundException.



234
235
236
237
# File 'lib/assertion.rb', line 234

def initialize(body_part)
    super("Expected body part was not found in response.")
    @body_part = body_part
end