Exception: JiniTest::TestError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

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_nameObject (readonly)

Returns the value of attribute class_name.



103
104
105
# File 'lib/jinitest.rb', line 103

def class_name
  @class_name
end