Exception: DTK::R8ParseError
Constant Summary
Constants inherited from Error
Error::CallerOffset, Error::DefaultCallerDepth
Instance Method Summary collapse
-
#initialize(msg, calling_obj = nil) ⇒ R8ParseError
constructor
A new instance of R8ParseError.
Methods inherited from Error
Constructor Details
#initialize(msg, calling_obj = nil) ⇒ R8ParseError
Returns a new instance of R8ParseError.
56 57 58 59 |
# File 'lib/errors/errors.rb', line 56 def initialize(msg,calling_obj=nil) msg = (calling_obj ? "#{msg} in class #{calling_obj.class.to_s}" : msg) super(msg) end |