Exception: JiniTest::TestError
- Inherits:
-
StandardError
- Object
- StandardError
- JiniTest::TestError
- Defined in:
- lib/jinitest.rb
Instance Attribute Summary collapse
-
#class_name ⇒ Object
readonly
Returns the value of attribute class_name.
Instance Method Summary collapse
-
#initialize(class_name, msg = '') ⇒ TestError
constructor
A new instance of TestError.
Constructor Details
#initialize(class_name, msg = '') ⇒ TestError
Returns a new instance of TestError.
105 106 107 108 |
# File 'lib/jinitest.rb', line 105 def initialize(class_name, msg = '') @class_name = class_name super(msg) end |
Instance Attribute Details
#class_name ⇒ Object (readonly)
Returns the value of attribute class_name.
103 104 105 |
# File 'lib/jinitest.rb', line 103 def class_name @class_name end |