Exception: R4A::RuntimeError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- R4A::RuntimeError
- Defined in:
- lib/core/r4a/common.rb
Direct Known Subclasses
Instance Attribute Summary (collapse)
-
- (Object) className
readonly
Returns the value of attribute className.
-
- (Object) e
readonly
Returns the value of attribute e.
-
- (Object) fileName
readonly
Returns the value of attribute fileName.
Instance Method Summary (collapse)
-
- (RuntimeError) initialize(fileName, className, e)
constructor
A new instance of RuntimeError.
- - (Object) to_s
Constructor Details
- (RuntimeError) initialize(fileName, className, e)
A new instance of RuntimeError
12 13 14 15 16 |
# File 'lib/core/r4a/common.rb', line 12 def initialize(fileName, className, e) @fileName = fileName @className = className @e = e end |
Instance Attribute Details
- (Object) className (readonly)
Returns the value of attribute className
10 11 12 |
# File 'lib/core/r4a/common.rb', line 10 def className @className end |
- (Object) e (readonly)
Returns the value of attribute e
10 11 12 |
# File 'lib/core/r4a/common.rb', line 10 def e @e end |
- (Object) fileName (readonly)
Returns the value of attribute fileName
10 11 12 |
# File 'lib/core/r4a/common.rb', line 10 def fileName @fileName end |
Instance Method Details
- (Object) to_s
18 19 20 |
# File 'lib/core/r4a/common.rb', line 18 def to_s return @e.to_s end |