Exception: TestApp::TestAppOtherError
- Inherits:
-
Exception
- Object
- Exception
- TestApp::TestAppOtherError
- Defined in:
- lib/capybara/spec/test_app.rb
Overview
rubocop:disable Lint/InheritException
Instance Method Summary collapse
-
#initialize(string1, msg) ⇒ TestAppOtherError
constructor
A new instance of TestAppOtherError.
Constructor Details
#initialize(string1, msg) ⇒ TestAppOtherError
Returns a new instance of TestAppOtherError.
12 13 14 15 16 |
# File 'lib/capybara/spec/test_app.rb', line 12 def initialize(string1, msg) super() @something = string1 @message = msg end |